31 lines
341 B
CSS
Raw Normal View History

2025-02-21 18:42:56 +01:00
html,
body {
height: 100%;
}
.is-fullwidth {
min-width: 100%;
}
.is-fullheight {
min-height: 100%;
height: 100%;
}
.has-text-ellipsis {
overflow-x: hidden;
text-overflow: ellipsis;
}
2025-02-22 09:42:15 +01:00
.htmx-indicator {
display: none;
}
.htmx-request .htmx-indicator {
display: block;
}
.htmx-request.htmx-indicator {
display: block;
}