1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 09:32:51 +00:00

client - forum page now responsive - other adjustments as well

This commit is contained in:
2018-01-27 18:25:12 -06:00
parent 7ec7416dad
commit a240b326ca
11 changed files with 130 additions and 52 deletions

View File

@@ -1,3 +1,5 @@
@import '../../scss/mixins';
.topic-bg {
background-image: url('../../assets/topic-bg.gif');
background-repeat: repeat-x;
@@ -63,16 +65,27 @@
padding: 4px;
width: 150px;
border-right: 1px solid #000000;
@include breakpoint(mediumOrLess) {
width: 100px;
}
}
&__header {
display: flex;
align-items: center;
min-height: 26px;
border-bottom: 1px solid #000000;
padding: 3px 6px;
@include breakpoint(mediumOrLess) {
font-size: 10px;
}
}
&__title {
display: flex;
align-items: center;
justify-content: space-between;
height: 26px;
border-bottom: 1px solid #000000;
padding: 0 6px;
color: white;
justify-content: space-between;
&__button {
cursor: pointer;
@@ -80,6 +93,11 @@
& + & {
margin-left: 3px;
}
@include breakpoint(mediumOrLess) {
width: 50px;
height: auto;
}
}
}
@@ -98,4 +116,5 @@
.character-name {
color: #FFAC04;
font-weight: bold;
white-space: nowrap;
}