mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 05:13:02 -05:00
22 lines
367 B
SCSS
22 lines
367 B
SCSS
table {
|
|
width: 100%;
|
|
}
|
|
|
|
table thead > tr > th {
|
|
text-align: left;
|
|
padding: 1rem 1rem;
|
|
border: 1px solid #dee2e6;
|
|
border-width: 0 0 1px 0;
|
|
font-weight: 700;
|
|
color: #343a40;
|
|
background: #f8f9fa;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
|
|
table tbody > tr > td {
|
|
text-align: left;
|
|
border: 1px solid #dee2e6;
|
|
border-width: 0 0 1px 0;
|
|
padding: 1rem 1rem;
|
|
}
|