40 lines
739 B
SCSS
40 lines
739 B
SCSS
@import "variables";
|
|
|
|
vn-worker-calendar {
|
|
.calendars {
|
|
position: relative;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding: $spacing-md;
|
|
|
|
& > vn-calendar {
|
|
border: 1px solid #ddd;
|
|
margin: $spacing-md;
|
|
padding: $spacing-xs;
|
|
max-width: 288px;
|
|
}
|
|
}
|
|
|
|
vn-chip.selectable {
|
|
cursor: pointer
|
|
}
|
|
|
|
vn-chip.selectable:hover {
|
|
opacity: 0.8
|
|
}
|
|
|
|
vn-chip vn-avatar {
|
|
text-align: center;
|
|
color: white
|
|
}
|
|
|
|
vn-icon[icon="info"] {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px
|
|
}
|
|
}
|