13 lines
217 B
CSS
13 lines
217 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
.overflow-hidden-scrollable {
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
.overflow-hidden-scrollable::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|