diff --git a/assets/scss/common/button.scss b/assets/scss/common/button.scss index 6f60886..505fba5 100644 --- a/assets/scss/common/button.scss +++ b/assets/scss/common/button.scss @@ -93,6 +93,7 @@ } .search-button { + height: 40px; color: map-deep-get($config, #{$theme}, "search-btn-color"); } diff --git a/assets/scss/common/grid.scss b/assets/scss/common/grid.scss index e20897c..2eeabc9 100644 --- a/assets/scss/common/grid.scss +++ b/assets/scss/common/grid.scss @@ -98,6 +98,17 @@ @include theme($theme); .v-application.#{$theme}-mode { + .grid-title { + font-weight: 600; + font-size: 16px; + line-height: 24px; + letter-spacing: 0; + color: map-deep-get($config, + #{$theme}, + "tui-grid-title-color" + ); + } + .tui-grid { &-table { border: 1px solid; diff --git a/assets/scss/var.scss b/assets/scss/var.scss index 7595e02..0619caf 100644 --- a/assets/scss/var.scss +++ b/assets/scss/var.scss @@ -102,6 +102,7 @@ $config: ( v-calendar-day-color: #fff, v-calendar-day-in-not-month-color: rgba(255, 255, 255, 0.05), v-calendar-is-today-background-color: #2d4571, + tui-grid-title-color: #FFFFFFD9, tui-grid-header-backgroundColor: #2a2b2d, tui-grid-header-color: #FFFFFFD9, tui-grid-border-horziontal-color: #212224, @@ -238,6 +239,7 @@ $config: ( v-calendar-day-color: #111, v-calendar-day-in-not-month-color: #f8f8f8, v-calendar-is-today-background-color: #e3eaf3, + tui-grid-title-color: #000000E0, tui-grid-header-backgroundColor: #fafafa, //#e0e0e0, tui-grid-header-color: rgba(0, 0, 0, 0.88), tui-grid-border-horziontal-color: #e0e0e0, diff --git a/components/common/chartoptions/GaugeChart.js b/components/common/chartoptions/GaugeChart.js index d08b9aa..d29225c 100644 --- a/components/common/chartoptions/GaugeChart.js +++ b/components/common/chartoptions/GaugeChart.js @@ -1,5 +1,5 @@ // Gauge chart options -export default function getGaugeChartOption({ title, value, min = 0, max = 160, unit = '%', isDarkMode = false, backgroundRadius = 97 }) { +export default function getGaugeChartOption({ title, min = 0, max = 160, unit = '%', isDarkMode = false, backgroundRadius = 97 }) { const colorRanges = isDarkMode ? [ [0.375, '#49AA19'], // Dark Green diff --git a/components/common/chartoptions/LineChart.js b/components/common/chartoptions/LineChart.js index b514378..7d5ebce 100644 --- a/components/common/chartoptions/LineChart.js +++ b/components/common/chartoptions/LineChart.js @@ -2,7 +2,7 @@ export default function getLineChartOption({ xAxisData = [], seriesData = [], - legendData = [], + // legendData = [], isDarkMode = false, }) { @@ -31,7 +31,7 @@ export default function getLineChartOption({ }, legend: { - data: legendData, + // data: legendData, icon: 'circle', top: '0%', right: '5%', diff --git a/components/pages/comm/CommCdTab.vue b/components/pages/comm/CommCdTab.vue index cc60b2b..80dc906 100644 --- a/components/pages/comm/CommCdTab.vue +++ b/components/pages/comm/CommCdTab.vue @@ -1,7 +1,7 @@