BookStack/resources/assets/sass/_tables.scss

27 lines
360 B
SCSS

table.table {
width: 100%;
tr {
border-bottom: 1px solid #DDD;
}
th, td {
text-align: left;
border: none;
padding: $-xs $-xs;
vertical-align: middle;
}
th {
font-weight: bold;
}
tr:hover {
background-color: #EEE;
}
}
table {
max-width: 100%;
thead {
background-color: #F8F8F8;
font-weight: 500;
}
}