mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
66 lines
904 B
SCSS
66 lines
904 B
SCSS
/* This might be an issue later. */
|
|
.row .col {
|
|
padding: 0 0.25rem !important;
|
|
}
|
|
|
|
.select-wrapper input.select-dropdown {
|
|
z-index: 0 !important;
|
|
}
|
|
|
|
.sidenav li {
|
|
overflow: hidden;
|
|
}
|
|
|
|
#recent-edits-sidenav {
|
|
min-width: 20%;
|
|
}
|
|
|
|
.content-page-list {
|
|
.card.horizontal {
|
|
.card-image {
|
|
img {
|
|
min-width: 200px;
|
|
max-width: 300px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1024px) {
|
|
.fixed-card-content
|
|
{
|
|
height: 12em;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1024px) {
|
|
.fixed-card-content
|
|
{
|
|
height: 12em;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1448px) {
|
|
.fixed-card-content
|
|
{
|
|
height: 9em;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: #f4f4f4;
|
|
}
|
|
|
|
.sidenav-trigger {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/* This is a hack to fix dropdowns working on iOS devices */
|
|
.dropdown-content {
|
|
transform: none !important;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
} |