Fix admin dashboard layout on smaller widths
This commit is contained in:
parent
766f437e44
commit
12768f1d42
1 changed files with 14 additions and 0 deletions
|
@ -290,6 +290,13 @@ table {
|
||||||
float: right;
|
float: right;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
|
|
||||||
|
@include medium-width {
|
||||||
|
width: 430px;
|
||||||
|
}
|
||||||
|
@include small-width {
|
||||||
|
width: 390px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-check {
|
.version-check {
|
||||||
|
@ -374,6 +381,13 @@ table {
|
||||||
width: 500px;
|
width: 500px;
|
||||||
height: 380px;
|
height: 380px;
|
||||||
|
|
||||||
|
@include medium-width {
|
||||||
|
width: 430px;
|
||||||
|
}
|
||||||
|
@include small-width {
|
||||||
|
width: 390px;
|
||||||
|
}
|
||||||
|
|
||||||
ul, li {
|
ul, li {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
Reference in a new issue