1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00
laravel-tips/resources/css/app.css
2021-04-07 21:02:12 +02:00

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;
}
}