Files
vue-bits/src/css/base.css
David Haz c61c1f1cc7 cleanup
2025-07-10 22:12:12 +03:00

67 lines
1.3 KiB
CSS

@import 'tailwindcss';
@import 'primeicons/primeicons.css';
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
background-color: #0b0b0b;
font-family: 'Figtree', sans-serif !important;
font-size: 16px;
color: #fff;
min-height: 100vh;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.app-container {
min-height: 100vh;
display: flex;
padding: 0 2em;
}
.back-to-top {
background: #0b0b0b !important;
border: 1px solid #142216;
}
@media (max-width: 640px) {
.p-toast {
position: fixed !important;
bottom: 1rem !important;
right: 1rem !important;
left: 1rem !important;
width: auto !important;
max-width: calc(100vw - 2rem) !important;
}
.p-toast-message {
max-width: 100% !important;
min-width: unset !important;
width: 100% !important;
margin: 0 !important;
font-size: 0.875rem !important;
padding: 0.75rem !important;
box-sizing: border-box !important;
}
.p-toast-message-content {
padding: 0.5rem !important;
gap: 0.5rem !important;
}
.p-toast-message-text {
word-wrap: break-word !important;
overflow-wrap: break-word !important;
hyphens: auto !important;
}
.p-toast-message-summary {
font-size: 0.875rem !important;
line-height: 1.25 !important;
}
}