mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
32 lines
553 B
SCSS
32 lines
553 B
SCSS
.reorder-categories {
|
|
thead {
|
|
border-bottom: 1px solid $primary-low;
|
|
th {
|
|
padding-bottom: 0.5em;
|
|
text-align: left;
|
|
}
|
|
}
|
|
input {
|
|
width: 4em;
|
|
@include breakpoint(mobile) {
|
|
width: 2em;
|
|
}
|
|
}
|
|
table {
|
|
width: 100%;
|
|
padding-bottom: 150px;
|
|
td {
|
|
padding: 0.5em 0.5em 0.5em 0;
|
|
@include breakpoint(mobile, min-width) {
|
|
min-width: 15em;
|
|
}
|
|
}
|
|
}
|
|
.badge-wrapper span.badge-category {
|
|
max-width: 20em;
|
|
@include breakpoint(mobile) {
|
|
max-width: 30vw;
|
|
}
|
|
}
|
|
}
|