mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-29 04:54:12 +03:00
a05f1f51d1
* Update Table Style to match new spec according to: https://www.google.com/design/spec/components/data-tables.html
16 lines
246 B
SCSS
16 lines
246 B
SCSS
table {
|
|
width: 100%;
|
|
font-size: 12px;
|
|
thead th {
|
|
color: rgba(0, 0, 0, 0.46);
|
|
font-weight: 400;
|
|
}
|
|
td, th {
|
|
padding: 10px 15px;
|
|
border-bottom: 1px solid #E0E0E0;
|
|
}
|
|
tbody tr:hover {
|
|
background-color: #EEEEEE;
|
|
}
|
|
}
|