mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 21:34:03 +00:00
21 lines
307 B
CSS
Vendored
21 lines
307 B
CSS
Vendored
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
|
|
@layer base {
|
|
.prose a {
|
|
@apply relative;
|
|
}
|
|
}
|
|
|
|
.break-smart {
|
|
@apply break-all;
|
|
}
|
|
|
|
@screen sm {
|
|
.break-smart {
|
|
word-break: normal !important;
|
|
|
|
@apply break-words;
|
|
}
|
|
}
|