]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_tables.scss
Found the source of the issue, not sure how to fix
[bookstack] / resources / assets / sass / _tables.scss
1
2 table.table {
3   width: 100%;
4   tr {
5     border-bottom: 1px solid #DDD;
6   }
7   th, td {
8     text-align: left;
9     border: none;
10     padding: $-xs $-xs;
11     vertical-align: middle;
12   }
13   th {
14     font-weight: bold;
15   }
16   tr:hover {
17     background-color: #EEE;
18   }
19 }
20
21 table {
22   max-width: 100%;
23   thead {
24     background-color: #F8F8F8;
25     font-weight: 500;
26   }
27 }