15 lines
375 B
SCSS
15 lines
375 B
SCSS
![]() |
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
.TextBar{
|
||
|
@apply w-full box-border py-[1vw] px-[4vw] text-[#666666FF] text-xl flex justify-between items-center;
|
||
|
}
|
||
|
|
||
|
.ListBar{
|
||
|
@apply bg-[#FF9900FF] text-white rounded-[3px] ml-4 select-none cursor-pointer;
|
||
|
}
|
||
|
|
||
|
.PageBar{
|
||
|
@apply box-border py-[2vw] px-[4vw] text-[#666666FF] flex justify-between items-center;
|
||
|
}
|