mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-25 01:04:02 +08:00
(fix) CSS for Quartzy [SCI-10159-core] (#7090)
This commit is contained in:
parent
6fa68adbb8
commit
82d9996f22
1 changed files with 10 additions and 2 deletions
|
@ -3,7 +3,9 @@
|
|||
<div class="modal-dialog !w-[900px]" role="document">
|
||||
<div class="modal-content !p-0 grid grid-cols-3">
|
||||
<div class="bg-sn-super-light-grey p-6 mb-1.5">
|
||||
<h3 class="mb-1.5">{{ config.title }}</h3>
|
||||
<div class="flex justify-start mb-1.5">
|
||||
<h3 class="modal-title">{{ config.title }}</h3>
|
||||
</div>
|
||||
<div v-if="config.subtitle" class="text-sn-dark-grey">
|
||||
{{ config.subtitle }}
|
||||
</div>
|
||||
|
@ -18,7 +20,13 @@
|
|||
></div>
|
||||
<div class="flex items-center gap-3">
|
||||
<div class="rounded bg-white border border-sn-sleepy-grey p-1.5">
|
||||
<i :class="step.icon"></i>
|
||||
<i :class="[
|
||||
step.icon,
|
||||
{
|
||||
'text-sn-dark-grey': index <= activeStep,
|
||||
'text-sn-grey': index > activeStep
|
||||
}
|
||||
]"></i>
|
||||
</div>
|
||||
<span
|
||||
class="font-bold text-xs"
|
||||
|
|
Loading…
Reference in a new issue