mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-24 22:39:14 +01:00
* chore: get front end tests passing * chore: add @vue/runtime-core to fix types for $t * chore: sort lockfile * Discard changes to frontend/pnpm-lock.yaml * chore: sort lockfile * chore: fix some type errors * chore: switch from nuxi typecheck to vue-tsc to force a known good version * chore: linting * chore: update pnpm version in frontend test * feat: add proper pagination type (need to sort why it still doesn't work) * chore: format imports and initialize totalPrice in label page to null when no label is present * chore: update pnpm to v9.12.2, merge ItemSummaryPaginationResult with PaginationResult, and handle error in label generator more gracefully * chore: lint --------- Co-authored-by: Matt Kilgore <matthew@kilgore.dev>
89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
.text-no-transform {
|
|
text-transform: none !important;
|
|
}
|
|
|
|
.btn {
|
|
text-transform: none !important;
|
|
}
|
|
|
|
.tooltip {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
/* transparent subtle scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 0.2em;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(0,0,0,.2);
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: #9B9B9B;
|
|
}
|
|
|
|
.scroll-bg::-webkit-scrollbar {
|
|
width: 0.5rem;
|
|
}
|
|
|
|
.scroll-bg::-webkit-scrollbar-thumb {
|
|
border-radius: 0.25rem;
|
|
@apply bg-base-300;
|
|
}
|
|
|
|
.markdown > :first-child {
|
|
margin-top: 0px !important;
|
|
}
|
|
|
|
.markdown :where(p, ul, ol, dl, blockquote, h1, h2, h3, h4, h5, h6) {
|
|
margin-top: var(--y-gap);
|
|
margin-bottom: var(--y-gap);
|
|
}
|
|
|
|
.markdown :where(ul) {
|
|
list-style: disc;
|
|
margin-left: 2rem;
|
|
}
|
|
|
|
.markdown :where(ol) {
|
|
list-style: decimal;
|
|
margin-left: 2rem;
|
|
}
|
|
/* Heading Styles */
|
|
.markdown :where(h1) {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.markdown :where(h2) {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.markdown :where(h3) {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.markdown :where(h4) {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.markdown :where(h5) {
|
|
font-size: 0.875rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.markdown :where(h6) {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
}
|