19 lines
318 B
CSS
19 lines
318 B
CSS
/*@import 'yourcssfile.css';*/
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.main-nav {
|
|
@apply flex justify-between items-center px-24 py-12;
|
|
|
|
ul {
|
|
@apply flex justify-between items-center gap-12;
|
|
}
|
|
}
|
|
|
|
.content-wrapper {
|
|
@apply max-w-screen-xl mx-auto px-12;
|
|
min-height: calc(100vh - 2@00px);
|
|
}
|