29 lines
342 B
SCSS
29 lines
342 B
SCSS
.staff-pt-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.week-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.week-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.no-data td {
|
|
text-align: center;
|
|
padding: 16px;
|
|
}
|