29 lines
488 B
SCSS
29 lines
488 B
SCSS
.header{
|
|
width: 100vw;
|
|
text-align: center;
|
|
}
|
|
|
|
.header-title {
|
|
font-size: 2.5rem;
|
|
font-weight: var(--bold);
|
|
}
|
|
.organisations-data {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
border: 8px solid black;
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
.organisation-data {
|
|
border: 2px solid grey;
|
|
white-space: pre-line;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.organisation-elem {
|
|
font-weight: var(--semi-bold);
|
|
font-size: 1.5rem;
|
|
} |