forked from cerc-io/snowballtools-base
8280f4c7f7
* ⚡️ feat: create wavy border component * ⚡️ feat: create project card component * ⚡️ feat: add new size in avatar * 🎨 style: add default border radius when the shape is default on the button * ⚡️ feat: create some icons for project card component * 🔧 chore: install and setup jetbrains mono font family * ⚡️ feat: create `getInitials` util function * 🎨 style: add jetbrains mono font to the tailwind config * ⚡️ feat: add warning error icon * ♻️ refactor: change `jetbrains-mono` to `mono`
18 lines
449 B
CSS
18 lines
449 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer utilities {
|
|
.focus-ring {
|
|
@apply focus-visible:ring-[3px] focus-visible:ring-snowball-200 focus-visible:ring-offset-1 focus-visible:ring-offset-snowball-500 focus-visible:outline-none;
|
|
}
|
|
|
|
.wave {
|
|
background-image: url('../public/wave-border.svg');
|
|
background-repeat: repeat-x;
|
|
background-position: top;
|
|
background-size: cover;
|
|
@apply w-full h-1;
|
|
}
|
|
}
|