mirror of
https://github.com/bckelley/blueberry-pma-theme.git
synced 2026-08-24 03:04:11 -05:00
48 lines
806 B
SCSS
48 lines
806 B
SCSS
.table {
|
|
background-color: unset;
|
|
// border: 1px solid $Color-Azure-300;
|
|
// border-radius: 10px;
|
|
|
|
th,
|
|
td {
|
|
text-shadow: 0 1px 0 #000;
|
|
vertical-align: middle;
|
|
padding: 0.1em 0.6em;
|
|
border-#{$direction-end}: 1px solid $Color-Body;
|
|
}
|
|
|
|
th {
|
|
text-align: $direction-start;
|
|
}
|
|
|
|
td {
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
thead th,
|
|
.thead-light th {
|
|
color: $Color-Tailwind-Title;
|
|
background: $Color-Body-Special;
|
|
border-#{$direction-end}: 1px solid $Color-Body;
|
|
// border-bottom: 1px solid $Color-Azure-500;
|
|
|
|
* {
|
|
color: $Color-Tailwind-Title;
|
|
}
|
|
}
|
|
|
|
&.table-light {
|
|
// border-radius: 10px;
|
|
// overflow: hidden;
|
|
border: 1px double $Color-Body;
|
|
}
|
|
}
|
|
|
|
// .table-hover {
|
|
// tbody tr {
|
|
// @include hover() {
|
|
// background: linear-gradient(#ced6df, #b6c6d7);
|
|
// }
|
|
// }
|
|
// }
|