refactor: move top level styles to tailwind

This commit is contained in:
Shivam Mishra
2023-10-04 19:26:07 +05:30
parent 5c9ab21617
commit f0d3ae09d9
2 changed files with 7 additions and 20 deletions
@@ -2,10 +2,6 @@
transition: box-shadow 0.35s $swift-ease-out-function,
height 2s $swift-ease-out-function;
&.is-focused {
box-shadow: var(--shadow);
}
.reply-box__top {
.icon {
color: $medium-gray;
@@ -47,8 +43,6 @@
}
&.is-private {
@apply bg-yellow-100 dark:bg-yellow-800;
.reply-box__top {
@apply bg-yellow-100 dark:bg-yellow-800;
@@ -1,5 +1,11 @@
<template>
<div class="reply-box" :class="replyBoxClass">
<div
class="border-t border-slate-50 dark:border-slate-700 bg-white dark:bg-slate-900 reply-box"
:class="{
'bg-yellow-100 dark:bg-yellow-800 is-private': isPrivate,
'shadow-sm': isFocused || hasAttachments,
}"
>
<banner
v-if="showSelfAssignBanner"
action-button-variant="clear"
@@ -389,12 +395,6 @@ export default {
: '(↵)';
return `${sendMessageText} ${keyLabel}`;
},
replyBoxClass() {
return {
'is-private': this.isPrivate,
'is-focused': this.isFocused || this.hasAttachments,
};
},
hasAttachments() {
return this.attachedFiles.length;
},
@@ -1077,13 +1077,6 @@ export default {
@apply bg-transparent py-0 px-4;
}
.reply-box {
@apply border-t border-slate-50 dark:border-slate-700 bg-white dark:bg-slate-900;
&.is-private {
@apply bg-yellow-50 dark:bg-yellow-200;
}
}
.send-button {
@apply mb-0;
}