remove sc prefix to fix build
This commit is contained in:
parent
84bf4a2686
commit
08350d00be
2 changed files with 7 additions and 8 deletions
|
|
@ -1,27 +1,27 @@
|
||||||
.container {
|
.container {
|
||||||
@apply sc-rounded-md sc-overflow-hidden sc-bg-[#222222];
|
@apply rounded-md overflow-hidden bg-[#222222];
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
@apply sc-flex sc-justify-between sc-bg-slate-700 sc-border-t sc-border-slate-500;
|
@apply flex justify-between bg-slate-700 border-t border-slate-500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttons {
|
.buttons {
|
||||||
@apply sc-flex;
|
@apply flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
@apply sc-cursor-pointer sc-w-16 sc-flex sc-items-center sc-justify-center sc-p-1 sc-bg-slate-700 sc-border-r sc-border-slate-500 sc-text-white hover:sc-bg-slate-600;
|
@apply cursor-pointer w-16 flex items-center justify-center p-1 bg-slate-700 border-r border-slate-500 text-white hover:bg-slate-600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttonDisabled {
|
.buttonDisabled {
|
||||||
@apply sc-cursor-pointer sc-w-16 sc-flex sc-items-center sc-justify-center sc-p-1 sc-bg-slate-600 sc-text-slate-400 sc-cursor-not-allowed;
|
@apply w-16 flex items-center justify-center p-1 bg-slate-600 text-slate-400 cursor-not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
@apply sc-text-right sc-p-1 sc-text-sm sc-text-red-200;
|
@apply text-right p-1 text-sm text-red-200;
|
||||||
}
|
}
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
@apply sc-overflow-auto sc-relative;
|
@apply overflow-auto relative;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,5 +7,4 @@ module.exports = {
|
||||||
corePlugins: {
|
corePlugins: {
|
||||||
preflight: false,
|
preflight: false,
|
||||||
},
|
},
|
||||||
prefix: 'sc-',
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue