Ekapp/skolehjem/resources/sass/app/general/_displays.scss

105 lines
1.3 KiB
SCSS
Raw Normal View History

.d-flex {
display: flex;
}
.flex-column {
flex-direction: column;
}
.d-none {
display: none !important;
}
.row {
display: flex;
flex-direction: row;
}
.align-items-center {
align-items: center;
}
.col {
display: flex;
flex-direction: column;
}
2020-06-15 06:56:21 +00:00
.cursor-normal {
cursor: default;
}
.cursor-pointer {
cursor: pointer;
}
nav > .pagination {
display: flex;
list-style: none;
padding-inline-start: unset;
justify-content: center;
}
.pagination > .page-item {
display: block;
list-style: none;
padding-right: 8px;
font-size: 1.5rem;
color: black;
}
.pagination > .page-item:last-child {
padding: 0;
}
.pagination > .page-item.disabled {
color: darkgrey;
}
.pagination > .page-item.active {
font-weight: bold;
}
.page-item.active > span {
font-size: 24px;
}
.pagination > .page-item.disabled > .page-link {
font-size: 24px;
}
nav {
margin-top: auto;
}
2020-08-24 09:27:17 +00:00
.calendar-table__col.disabled > .calendar-table__item {
color: darkgrey;
}
.position-fixed {
position: fixed;
}
.top-0 {
top: 0;
}
.zindex-100 {
z-index: 100;
}
.border-none {
border: none;
}
.outline-none {
outline: none;
}
.overflow-visible {
overflow: visible;
}
ol {
padding-right: 8px;
}