9 lines
302 B
SCSS
9 lines
302 B
SCSS
// @use '../../node_modules/@unocss/reset/normalize.css';
|
|
@use '../../node_modules/@unocss/reset/tailwind-compat.css';
|
|
// @use '../../node_modules/animate.css/animate.min.css';
|
|
@use 'uno';
|
|
|
|
.btn {
|
|
// p-2 text-white bg-blue-500 rounded-lg
|
|
@extend .p-2, .text-white, .bg-blue-500, .rounded-lg;
|
|
}
|