11 lines
156 B
SCSS
11 lines
156 B
SCSS
/* tables */
|
|
table, td, th, tr {
|
|
border: 1px dotted $lightpurple;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
tr:nth-child(even){background-color: $gray;}
|