1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 16:19:26 +00:00

Stat preparation style cleanup

This commit is contained in:
2022-04-22 04:05:04 +00:00
parent b46e7cf7c1
commit defdc3590e
2 changed files with 5 additions and 5 deletions

View File

@@ -113,13 +113,14 @@
@include space-contents;
&__stats {
display: grid;
grid-template-columns: 1fr 1fr;
display: flex;
flex-wrap: wrap;
gap: .5rem;
div {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
text-align: center;
background: $admin-bg;
@@ -141,9 +142,8 @@
}
@include respond-to('medium') {
grid-template-columns: repeat(5, 1fr);
flex-wrap: nowrap;
}
}
&__graphs {

View File

@@ -15,6 +15,6 @@
}
@include respond-to('medium') {
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(3, 1fr);
}
}