feat: Add support for dark mode in more pages

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Sivin Varghese
2023-07-06 07:56:24 +05:30
committed by GitHub
parent 4e8d17f017
commit 528da1d2cf
21 changed files with 211 additions and 502 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="row settings--section" :class="{ border: showBorder }">
<div class="row settings--section" :class="{ 'border-bottom': showBorder }">
<div class="medium-4 small-12 title--section">
<p v-if="title" class="sub-block-title">
{{ title }}
@@ -50,7 +50,7 @@ export default {
display: flex;
padding: 0 $space-normal $space-normal 0;
&.border {
&.border-bottom {
padding-top: $space-normal;
border-bottom: 1px solid $color-border;
}