Files
doneit-web/src/app/shared/header/header.page.scss
T

44 lines
639 B
SCSS
Raw Normal View History

@import '~src/function.scss';
.div-top-header{
2021-03-01 15:45:30 +01:00
margin: 0 em(20px);
background-color: #0782c9;
padding-top: em(15px);
border: 0!important;
.div-search{
2021-03-01 15:45:30 +01:00
ion-icon{
font-size: 45px;
}
}
.div-logo{
background: transparent;
width: em(140px);
justify-content: center;
display: flex;
}
.div-logo img{
width: 100%;
margin: 0px auto;
}
.div-profile{
font-size: 45px;
2020-12-30 11:44:19 +01:00
justify-content: flex-end;
display: flex;
}
2021-03-01 15:45:30 +01:00
}
.desktop{
display: none;
}
@media only screen and (min-width: 1024px) {
.mobile{
display: none !important;
}
.desktop{
display: block;
}
}