Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
style(chat): flex a controls container
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Nov 25, 2022
1 parent 97b46e2 commit f52f94a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
40 changes: 22 additions & 18 deletions components/consultation/chat_window/user_controller.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,31 +56,35 @@
<style scoped lang="scss">
@import "@styles/btn.scss";
.user-controls {
@apply border-t p-3 flex;
@apply border-t p-3 flex items-center;
.will-not-start{
@apply text-sm opacity-50;
}
.left-controls {
@apply flex;
}
.suspense-container {
width: 100%;
.loaded-container {
@apply flex;
}
}
}
.will-not-start{
@apply text-sm opacity-50;
}
.message-box {
@apply flex-1 mx-2 border-0;
height: max-content;
input {
@apply bg-transparent border-b px-2;
width: 100%;
&:focus {
@apply border-b-gray-500;
outline: none;
.message-box {
@apply flex-1 mx-2 border-0;
height: max-content;
input {
@apply bg-transparent border-b px-2;
width: 100%;
&:focus {
@apply border-b-gray-500;
outline: none;
}
}
}
}
}
}
Expand Down
3 changes: 0 additions & 3 deletions components/helpers/suspensible.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
</div>
</template>

<style scoped>
</style>

<script setup lang="ts">
import progressBar from "@/helpers/progress_bar.vue"

Expand Down

0 comments on commit f52f94a

Please sign in to comment.