1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 03:19:27 +00:00
Files
stratos/src/stylesheets/components/_admin.scss

62 lines
787 B
SCSS

.adminContent {
min-height: 91vh;
background-color: $admin-bg;
padding: .5rem 1rem 0 1rem;
@include respond-to('medium') {
padding-left: 2rem;
padding-right: 2rem;
}
@include respond-to('large') {
margin-left: 20vw;
}
}
.adminItem {
padding: .7rem;
background-color: white;
border-radius: 15px;
}
.adminSection {
margin: 1rem 0;
&:last-child {
margin-bottom: 0;
padding-bottom: 1rem;
}
h2 {
color: $text-colour;
font-weight: normal;
margin-left: .5rem;
}
}
.adminTable {
background-color: $admin-bg;
padding: 1rem;
border-radius: 15px;
table {
width: 100%;
border-spacing: 0;
}
tbody tr {
@include on-event() {
background-color: white;
cursor: pointer;
}
}
th {
text-align: left;
}
td, th {
padding: .5rem 1rem;
}
}