59 lines
763 B
SCSS
59 lines
763 B
SCSS
@import "variables";
|
|
|
|
header {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
footer {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wrapper_header_content {
|
|
max-width: initial;
|
|
}
|
|
|
|
@media only screen and (max-width: $screen-xl-max) {
|
|
|
|
header {
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
section.profile {
|
|
width: 100%;
|
|
}
|
|
|
|
.info_profile {
|
|
width: 100%;
|
|
}
|
|
|
|
.dropbtn,
|
|
.header_logo,
|
|
.header_btn_mover {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#support_img {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: $screen-sm-max) {
|
|
|
|
.menu_buttons.right.open {
|
|
right: 0;
|
|
transition: 200ms;
|
|
position: fixed;
|
|
display: block;
|
|
padding-top: 0;
|
|
top: 45px;
|
|
background: #ffffff;
|
|
}
|
|
}
|
|
|
|
@media (max-width: $screen-sm-max) {
|
|
.menu_buttons.right.open {
|
|
//display: none;
|
|
}
|
|
}
|