mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-05-08 03:14:44 +00:00
19 lines
369 B
CSS
19 lines
369 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.hover-effect {
|
|
@apply transition-colors duration-100 hover:bg-black hover:bg-opacity-10 dark:hover:bg-white dark:hover:bg-opacity-5;
|
|
}
|
|
|
|
.w-fill {
|
|
width: -webkit-fill-available;
|
|
width: -moz-available;
|
|
width: stretch;
|
|
}
|
|
|
|
.display-unset {
|
|
display: unset;
|
|
}
|
|
}
|