web-humas-fe/styles/globals.css

124 lines
1.8 KiB
CSS
Raw Normal View History

2024-01-05 06:57:30 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-01-29 06:38:26 +00:00
2024-03-11 15:46:08 +00:00
/*
*{
border:1px solid green;
} */
.custom-scrollbar::-webkit-scrollbar {
2024-04-19 13:26:27 +00:00
width: 1px;
2024-03-11 15:46:08 +00:00
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
2024-04-19 13:26:27 +00:00
background: rgb(190, 189, 189);
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
2024-03-11 15:46:08 +00:00
background: transparent;
2024-04-19 13:26:27 +00:00
}
.hidden-tooltip {
display: none;
}
2025-10-15 02:19:51 +00:00
/* .ck-editor__editable_inline {
2025-01-20 17:04:10 +00:00
min-height: 200px;
2025-10-15 02:19:51 +00:00
} */
2025-01-20 17:04:10 +00:00
2024-04-19 13:26:27 +00:00
.sidebar-scrollbar {
--scroll-shadow-size: 40px;
}
2024-04-24 04:14:06 +00:00
2025-01-14 15:30:13 +00:00
.swiper {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
border-radius: 1rem;
/* Center slide text vertically */
display: flex;
justify-content: center;
align-items: center;
}
2025-03-13 08:53:48 +00:00
.custom-button-slider .swiper-button-next {
right: 0px !important;
}
.custom-button-slider .swiper-button-prev {
left: 0px !important;
}
2025-01-14 15:30:13 +00:00
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
2025-01-17 02:57:45 +00:00
.swiper-button-next::after,
.swiper-button-prev::after {
2025-03-13 08:53:48 +00:00
font-size: 20px !important;
2025-01-17 02:57:45 +00:00
}
@media (max-width: 768px) {
.swiper-button-next::after,
.swiper-button-prev::after {
2025-03-13 08:53:48 +00:00
font-size: 10px !important;
2025-01-17 02:57:45 +00:00
}
}
@layer utilities {
.clip-path-triangle {
clip-path: polygon(0 0, 100% 50%, 0 100%);
}
}
2025-10-15 02:19:51 +00:00
/* .ck-editor__editable_inline:not(.ck-comment__input *) {
height: 300px;
overflow-y: auto;
2025-10-15 02:19:51 +00:00
} */
body {
height: 100%;
overflow: hidden;
}
main {
height: 100vh;
overflow-y: auto;
}
2025-01-31 12:42:40 +00:00
.komdigi-styling #gpr-kominfo-widget-body {
height: 67vh !important;
}
2025-02-17 16:32:20 +00:00
.custom-popup {
color: black;
}
.custom-button {
color: black !important;
}
2025-04-28 04:39:51 +00:00
.swal2-confirm {
background-color: #4275f5 !important;
2025-05-04 07:14:12 +00:00
color: white !important;
2025-04-28 04:39:51 +00:00
}
.swal2-cancel {
background-color: #d33 !important;
2025-05-04 07:14:12 +00:00
color: white !important;
2025-04-28 04:39:51 +00:00
}