29 lines
394 B
SCSS
29 lines
394 B
SCSS
.table {
|
|
width: 100%;
|
|
|
|
& > thead {
|
|
& > tr {
|
|
& > th {
|
|
padding: 15px 0;
|
|
border-bottom: 2px solid #015082;
|
|
font-size: 20px;
|
|
line-height: 27px;
|
|
font-weight: bold;
|
|
color: #0072bc;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
& > tbody {
|
|
& > tr {
|
|
& > td {
|
|
padding: 15px 0;
|
|
border-bottom: 1px solid #0072bc;
|
|
font-size: 20px;
|
|
line-height: 27px;
|
|
}
|
|
}
|
|
}
|
|
}
|