2022-04-16 14:53:32 +00:00

59 lines
1014 B
SCSS

@import "../../assets/scss/variables";
@import "../../assets/scss/mixins";
.post {
&__footer {
margin: 0 auto;
max-width: $layout-post-width;
padding: 0 15px;
}
&__comments {
margin: 0 auto;
max-width: $layout-post-width;
padding: 0 15px;
}
&__home-button {
border: 1px solid $color-gray-border;
border-radius: $button-border-radius;
color: $color-base;
display: block;
font-size: $typographic-base-font-size;
font-weight: normal;
height: $button-height;
line-height: $button-height;
margin-left: auto;
margin-right: auto;
max-width: 90px;
padding: 0 24px;
text-align: center;
@include margin-top(1);
&:hover,
&:focus {
color: $color-primary;
}
}
}
@include breakpoint-md {
.post {
&__footer {
padding: 0;
}
&__comments {
padding: 0;
}
&__home-button {
left: 30px;
margin: 0;
max-width: auto;
position: fixed;
top: 30px;
}
}
}