15 lines
266 B
SCSS
15 lines
266 B
SCSS
.table-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 0.2rem 0.6rem;
|
|
border-radius: 0.5rem;
|
|
color: white;
|
|
font-weight: bold;
|
|
font-size: 0.8rem;
|
|
}
|
|
|