mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
998 B
Plaintext
46 lines
998 B
Plaintext
.change-resource-filename-dialog {
|
|
> .dialog-container {
|
|
@apply w-72;
|
|
|
|
> .dialog-content-container {
|
|
@apply flex flex-col justify-start items-start;
|
|
|
|
> .tip-text {
|
|
@apply bg-gray-400 text-xs p-2 rounded-lg;
|
|
}
|
|
|
|
> .form-label {
|
|
@apply flex flex-col justify-start items-start relative w-full leading-relaxed;
|
|
|
|
&.input-form-label {
|
|
@apply py-3 pb-1;
|
|
|
|
> input {
|
|
@apply w-full p-2 text-sm leading-6 rounded border border-gray-400 bg-transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .btns-container {
|
|
@apply flex flex-row justify-end items-center mt-2 w-full;
|
|
|
|
> .btn {
|
|
@apply text-sm px-4 py-2 rounded ml-2 bg-gray-400;
|
|
|
|
&:hover {
|
|
@apply opacity-80;
|
|
}
|
|
|
|
&.confirm-btn {
|
|
@apply bg-green-600 text-white shadow-inner;
|
|
}
|
|
|
|
&.cancel-btn {
|
|
background-color: unset;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|