29 lines
412 B
SCSS
Vendored
29 lines
412 B
SCSS
Vendored
//notes.scss
|
|
|
|
//the hovercard that is displayed in notes
|
|
@import "hovercard";
|
|
|
|
.note {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.note img {
|
|
max-width: 100%;
|
|
max-height: 80vh;
|
|
}
|
|
|
|
.note-metadata {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.icon {
|
|
width: auto;
|
|
height: 1em;
|
|
}
|
|
|
|
//style the pagination links
|
|
@import "pagination";
|