65 lines
995 B
SCSS
Raw Normal View History

2021-05-07 08:13:44 +02:00
.desktop_header{
display: none;
}
2021-05-07 08:13:44 +02:00
.mobile_header{
display: flex;
align-items: center;
width: 100%;
height: 70px;
// Znotraj ankete
&.survey_edit{
color: white;
background-color: $strong_blue;
}
// Seznam anket
&.survey_list{
color: $strong_blue;
background-color: white;
}
.mobile_menu_icon{
width: 50px;
text-align: center;
span{
cursor: pointer;
}
}
.mobile_survey_title{
width: calc(100% - 100px);
text-align: center;
font-size: 14px;
font-weight: 500;
}
.mobile_logo{
width: calc(100% - 100px);
#enka_logo{
margin: 0 auto;
}
}
.mobile_menu{
display: none;
z-index: 99999;
position: fixed;
left: 0;
top: 0px;
bottom: 0px;
width: 80%;
height: 100%;
background-color: white;
}
}