mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
49 lines
652 B
SCSS
49 lines
652 B
SCSS
@import '~src/function.scss';
|
|
|
|
.div-top-header{
|
|
margin: 0 em(20);
|
|
background-color: #0782c9;
|
|
padding-top: em(15);
|
|
border: 0!important;
|
|
}
|
|
|
|
.div-logo{
|
|
background: transparent;
|
|
width: em(140);
|
|
justify-content: center;
|
|
display: flex;
|
|
}
|
|
.div-logo img{
|
|
width: 100%;
|
|
margin: 0px auto;
|
|
}
|
|
.div-profile{
|
|
font-size: rem(45);
|
|
justify-content: flex-end;
|
|
display: flex;
|
|
}
|
|
|
|
.desktop{
|
|
display: none;
|
|
}
|
|
|
|
@media only screen and (min-width: 1366px) {
|
|
|
|
.mobile{
|
|
display: none !important;
|
|
}
|
|
.desktop{
|
|
display: block;
|
|
}
|
|
|
|
}
|
|
|
|
.tab{
|
|
height: 65px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.active{
|
|
border-top: 7px solid white;
|
|
} |