blob: cab2cb1b51388734a509b5f08282a22b3053bf5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.tabs {
@apply flex gap-x-4;
}
.tab {
@apply py-1.5 duration-300;
transition-property: background-color;
}
.tabActive {
@apply cursor-default border-b-2 border-danger-500 font-medium;
}
|