forked from Bunteshaus/bunteshaus.de
21 lines
299 B
SCSS
21 lines
299 B
SCSS
* {
|
|
overflow-wrap: break-word;
|
|
hyphens: auto;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 100%;
|
|
height: 100vh;
|
|
width: 100%;
|
|
a {
|
|
color: var(--text-color);
|
|
}
|
|
}
|
|
|