18 lines
334 B
SCSS
18 lines
334 B
SCSS
@import "../helpers/variables";
|
|
@import "../helpers/placeholders";
|
|
|
|
.Page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: relative;
|
|
top: 4rem;
|
|
|
|
width: calc(100% - 2rem);
|
|
height: 100%;
|
|
margin: 1rem;
|
|
background-color: $rustred;
|
|
color: $papyrus;
|
|
|
|
@extend %variations;
|
|
} |