11 lines
263 B
CSS
11 lines
263 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&display=swap");
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.table-cell {
|
|
@apply py-2 px-5 border-2 border-violet-300 dark:border-slate-700;
|
|
}
|
|
}
|