35 lines
689 B
SCSS
35 lines
689 B
SCSS
@use '~@/scss/images.scss' as img;
|
|
|
|
$--Backgrounds-Primary: '#fff';
|
|
|
|
.personal-container {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: radial-gradient(227.15% 100% at 50% 0%, #EEFFDC 0%, #FFF 36.58%), var(--Backgrounds-Primary, #FFF);
|
|
padding-top: 100px;
|
|
box-sizing: border-box;
|
|
|
|
.personal-navigator {
|
|
position: fixed;
|
|
left: 10px;
|
|
top: 54px;
|
|
width: 32px;
|
|
height: 32px;
|
|
|
|
.personal-navigator-back {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.personal-content {
|
|
width: 100%;
|
|
height: calc(100vh - 300px);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 32px;
|
|
font-weight: 500;
|
|
color: #000;
|
|
}
|
|
} |