Making user table responsive for tablets
This commit is contained in:
parent
a5172a37e0
commit
3f7dafb69d
|
@ -27,10 +27,16 @@
|
|||
padding: 0.5em;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid $primary-low;
|
||||
@media screen and (max-width: $small-width) {
|
||||
padding: .5em .25em;
|
||||
}
|
||||
|
||||
.number, .time-read {
|
||||
font-size: $font-up-3;
|
||||
color: $primary-medium;
|
||||
@media screen and (max-width: $small-width) {
|
||||
font-size: $font-down-2;
|
||||
}
|
||||
}
|
||||
.time-read {
|
||||
white-space: nowrap;
|
||||
|
|
|
@ -41,6 +41,10 @@
|
|||
|
||||
&.small {
|
||||
width: 333px;
|
||||
@media screen and (max-width: $small-width) {
|
||||
width: auto;
|
||||
display: flex;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue