27 lines
549 B
CSS
27 lines
549 B
CSS
.container {
|
|
@apply rounded-md overflow-hidden bg-[#222222];
|
|
}
|
|
|
|
.header {
|
|
@apply flex justify-between bg-slate-700 border-t border-slate-500;
|
|
}
|
|
|
|
.buttons {
|
|
@apply flex;
|
|
}
|
|
|
|
.button {
|
|
@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 {
|
|
@apply w-16 flex items-center justify-center p-1 bg-slate-600 text-slate-400 cursor-not-allowed;
|
|
}
|
|
|
|
.error {
|
|
@apply text-right p-1 text-sm text-red-200;
|
|
}
|
|
|
|
.body {
|
|
@apply overflow-auto relative;
|
|
}
|