@growthub/cli 0.9.9 → 0.9.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1726,3 +1726,713 @@ code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0
1726
1726
  grid-template-columns: 1fr;
1727
1727
  }
1728
1728
  }
1729
+
1730
+ /* === V1.1 builder extensions: sub-panel navigation, source/fields/sort/filter, chart, command palette === */
1731
+
1732
+ .workspace-widget-subpanel {
1733
+ display: grid;
1734
+ gap: 12px;
1735
+ padding-top: 8px;
1736
+ }
1737
+ .workspace-widget-subpanel-header {
1738
+ display: flex;
1739
+ align-items: center;
1740
+ gap: 10px;
1741
+ padding: 6px 0 8px;
1742
+ border-bottom: 1px solid #ececec;
1743
+ }
1744
+ .workspace-widget-subpanel-header div {
1745
+ display: flex;
1746
+ flex-direction: column;
1747
+ min-width: 0;
1748
+ }
1749
+ .workspace-widget-subpanel-header p {
1750
+ margin: 0;
1751
+ font-size: 11px;
1752
+ color: #999;
1753
+ text-transform: uppercase;
1754
+ letter-spacing: 0.04em;
1755
+ }
1756
+ .workspace-widget-subpanel-header strong {
1757
+ font-size: 14px;
1758
+ color: #444;
1759
+ white-space: nowrap;
1760
+ overflow: hidden;
1761
+ text-overflow: ellipsis;
1762
+ }
1763
+ .workspace-widget-subpanel-back {
1764
+ width: 26px;
1765
+ height: 26px;
1766
+ display: grid;
1767
+ place-items: center;
1768
+ border: 1px solid #e8e8e8;
1769
+ border-radius: 6px;
1770
+ background: #fff;
1771
+ color: #666;
1772
+ cursor: pointer;
1773
+ font-size: 16px;
1774
+ line-height: 1;
1775
+ }
1776
+ .workspace-widget-subpanel-back:hover {
1777
+ background: #f3f3f3;
1778
+ }
1779
+
1780
+ .workspace-panel-hint {
1781
+ margin: 2px 0 0;
1782
+ color: #999;
1783
+ font-size: 11px;
1784
+ line-height: 1.5;
1785
+ }
1786
+
1787
+ /* Settings row buttons (replace bare div on the root inspector list) */
1788
+ .workspace-settings-list .workspace-settings-row {
1789
+ width: 100%;
1790
+ display: flex;
1791
+ align-items: center;
1792
+ justify-content: space-between;
1793
+ min-height: 34px;
1794
+ border: 0;
1795
+ border-radius: 5px;
1796
+ background: transparent;
1797
+ color: #666;
1798
+ font: inherit;
1799
+ font-size: 13px;
1800
+ padding: 0 8px;
1801
+ text-align: left;
1802
+ cursor: pointer;
1803
+ }
1804
+ .workspace-settings-list .workspace-settings-row:hover:not([disabled]) {
1805
+ background: #f3f3f3;
1806
+ }
1807
+ .workspace-settings-list .workspace-settings-row[disabled] {
1808
+ cursor: default;
1809
+ color: #888;
1810
+ }
1811
+ .workspace-settings-list .workspace-settings-row code {
1812
+ color: #888;
1813
+ background: transparent;
1814
+ }
1815
+
1816
+ /* Source picker */
1817
+ .workspace-source-list {
1818
+ display: grid;
1819
+ gap: 4px;
1820
+ }
1821
+ .workspace-source-controls {
1822
+ display: grid;
1823
+ gap: 8px;
1824
+ margin-top: 8px;
1825
+ }
1826
+ .workspace-source-controls label {
1827
+ min-width: 0;
1828
+ min-height: 34px;
1829
+ display: grid;
1830
+ grid-template-columns: 18px minmax(0, 1fr) auto;
1831
+ align-items: center;
1832
+ gap: 8px;
1833
+ border: 1px solid #e5e5e5;
1834
+ border-radius: 7px;
1835
+ background: #ffffff;
1836
+ color: #777;
1837
+ padding: 0 9px;
1838
+ box-shadow: 0 1px 2px rgba(15, 15, 15, 0.04);
1839
+ }
1840
+ .workspace-source-controls input,
1841
+ .workspace-source-controls select {
1842
+ width: 100%;
1843
+ min-width: 0;
1844
+ height: 32px;
1845
+ border: 0;
1846
+ outline: 0;
1847
+ background: transparent;
1848
+ color: #333;
1849
+ font: inherit;
1850
+ font-size: 13px;
1851
+ padding: 0;
1852
+ }
1853
+ .workspace-source-controls select {
1854
+ appearance: none;
1855
+ cursor: pointer;
1856
+ }
1857
+ .workspace-source-controls label:focus-within {
1858
+ border-color: #8fb4ff;
1859
+ box-shadow: 0 0 0 2px rgba(63, 104, 255, 0.12);
1860
+ }
1861
+ .workspace-source-row {
1862
+ width: 100%;
1863
+ display: grid;
1864
+ grid-template-columns: 28px 1fr auto;
1865
+ align-items: center;
1866
+ gap: 10px;
1867
+ padding: 8px 10px;
1868
+ border: 1px solid #ececec;
1869
+ border-radius: 6px;
1870
+ background: #fff;
1871
+ color: #555;
1872
+ text-align: left;
1873
+ cursor: pointer;
1874
+ font: inherit;
1875
+ }
1876
+ .workspace-source-row:hover {
1877
+ border-color: #d0d0d0;
1878
+ background: #fafafa;
1879
+ }
1880
+ .workspace-source-row.active {
1881
+ border-color: #38bdf8;
1882
+ background: rgba(56, 189, 248, 0.06);
1883
+ }
1884
+ .workspace-source-icon {
1885
+ width: 26px;
1886
+ height: 26px;
1887
+ display: grid;
1888
+ place-items: center;
1889
+ border: 1px solid #e0e0e0;
1890
+ border-radius: 5px;
1891
+ background: #fafafa;
1892
+ color: #666;
1893
+ font-size: 13px;
1894
+ font-weight: 600;
1895
+ }
1896
+ .workspace-source-meta {
1897
+ display: flex;
1898
+ flex-direction: column;
1899
+ min-width: 0;
1900
+ }
1901
+ .workspace-source-meta strong {
1902
+ color: #333;
1903
+ font-size: 13px;
1904
+ font-weight: 600;
1905
+ white-space: nowrap;
1906
+ overflow: hidden;
1907
+ text-overflow: ellipsis;
1908
+ }
1909
+ .workspace-source-meta em {
1910
+ color: #999;
1911
+ font-size: 11px;
1912
+ font-style: normal;
1913
+ }
1914
+ .workspace-source-tick {
1915
+ color: #38bdf8;
1916
+ font-weight: 700;
1917
+ }
1918
+
1919
+ /* Fields manager */
1920
+ .workspace-field-rows {
1921
+ display: grid;
1922
+ gap: 3px;
1923
+ }
1924
+ .workspace-field-row {
1925
+ display: grid;
1926
+ grid-template-columns: 18px 22px 1fr auto;
1927
+ align-items: center;
1928
+ gap: 8px;
1929
+ padding: 4px 6px;
1930
+ border-radius: 5px;
1931
+ font-size: 13px;
1932
+ color: #444;
1933
+ }
1934
+ .workspace-field-row:hover {
1935
+ background: #f6f6f6;
1936
+ }
1937
+ .workspace-field-row-hidden {
1938
+ grid-template-columns: 22px 1fr auto;
1939
+ color: #999;
1940
+ }
1941
+ .workspace-field-row-handle {
1942
+ cursor: grab;
1943
+ color: #bbb;
1944
+ font-weight: 700;
1945
+ user-select: none;
1946
+ }
1947
+ .workspace-field-row-icon {
1948
+ display: grid;
1949
+ place-items: center;
1950
+ font-size: 12px;
1951
+ color: #777;
1952
+ }
1953
+ .workspace-field-row-name {
1954
+ white-space: nowrap;
1955
+ overflow: hidden;
1956
+ text-overflow: ellipsis;
1957
+ }
1958
+ .workspace-field-row-actions {
1959
+ display: inline-flex;
1960
+ gap: 2px;
1961
+ }
1962
+ .workspace-field-row-actions button {
1963
+ width: 24px;
1964
+ height: 24px;
1965
+ display: grid;
1966
+ place-items: center;
1967
+ border: 0;
1968
+ border-radius: 5px;
1969
+ background: transparent;
1970
+ color: #999;
1971
+ cursor: pointer;
1972
+ font-size: 12px;
1973
+ }
1974
+ .workspace-field-row-actions button:hover:not([disabled]) {
1975
+ background: #ececec;
1976
+ color: #444;
1977
+ }
1978
+ .workspace-field-row-actions button[disabled] {
1979
+ opacity: 0.4;
1980
+ cursor: not-allowed;
1981
+ }
1982
+ .workspace-hidden-fields-toggle {
1983
+ display: flex;
1984
+ align-items: center;
1985
+ justify-content: space-between;
1986
+ width: 100%;
1987
+ padding: 8px 6px;
1988
+ border: 0;
1989
+ border-top: 1px solid #ececec;
1990
+ background: transparent;
1991
+ color: #666;
1992
+ font: inherit;
1993
+ font-size: 12px;
1994
+ cursor: pointer;
1995
+ margin-top: 4px;
1996
+ }
1997
+ .workspace-hidden-fields-toggle:hover {
1998
+ background: #f6f6f6;
1999
+ }
2000
+ .workspace-hidden-fields {
2001
+ border-top: 0;
2002
+ }
2003
+ .workspace-field-add {
2004
+ display: grid;
2005
+ grid-template-columns: 1fr auto;
2006
+ gap: 6px;
2007
+ padding-top: 6px;
2008
+ border-top: 1px solid #ececec;
2009
+ }
2010
+ .workspace-field-add input {
2011
+ border: 1px solid #e5e5e5;
2012
+ border-radius: 6px;
2013
+ background: #fafafa;
2014
+ font: inherit;
2015
+ padding: 7px 9px;
2016
+ }
2017
+ .workspace-field-add button {
2018
+ border: 1px solid #d8d8d8;
2019
+ background: #fff;
2020
+ border-radius: 6px;
2021
+ padding: 0 12px;
2022
+ cursor: pointer;
2023
+ color: #444;
2024
+ font-size: 13px;
2025
+ }
2026
+ .workspace-field-add button:disabled {
2027
+ opacity: 0.5;
2028
+ cursor: not-allowed;
2029
+ }
2030
+
2031
+ /* Sort + Filter */
2032
+ .workspace-sort-list,
2033
+ .workspace-filter-list {
2034
+ display: grid;
2035
+ gap: 6px;
2036
+ }
2037
+ .workspace-sort-row {
2038
+ display: grid;
2039
+ grid-template-columns: 1fr 1fr auto;
2040
+ gap: 6px;
2041
+ align-items: center;
2042
+ }
2043
+ .workspace-filter-clause {
2044
+ display: grid;
2045
+ grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
2046
+ gap: 6px;
2047
+ align-items: center;
2048
+ }
2049
+ .workspace-filter-clause-empty {
2050
+ color: #bbb;
2051
+ text-align: center;
2052
+ }
2053
+ .workspace-sort-row select,
2054
+ .workspace-filter-clause select,
2055
+ .workspace-filter-clause input {
2056
+ border: 1px solid #e5e5e5;
2057
+ border-radius: 6px;
2058
+ background: #fafafa;
2059
+ color: #444;
2060
+ font: inherit;
2061
+ padding: 6px 8px;
2062
+ }
2063
+ .workspace-sort-row button,
2064
+ .workspace-filter-clause button {
2065
+ width: 26px;
2066
+ height: 26px;
2067
+ border: 0;
2068
+ border-radius: 5px;
2069
+ background: transparent;
2070
+ color: #999;
2071
+ cursor: pointer;
2072
+ }
2073
+ .workspace-sort-row button:hover,
2074
+ .workspace-filter-clause button:hover {
2075
+ background: #ececec;
2076
+ color: #444;
2077
+ }
2078
+ .workspace-add-clause {
2079
+ display: inline-flex;
2080
+ align-items: center;
2081
+ gap: 4px;
2082
+ border: 1px dashed #d8d8d8;
2083
+ background: #fafafa;
2084
+ color: #555;
2085
+ border-radius: 6px;
2086
+ padding: 6px 10px;
2087
+ cursor: pointer;
2088
+ font: inherit;
2089
+ font-size: 12px;
2090
+ }
2091
+ .workspace-add-clause:hover:not(:disabled) {
2092
+ border-color: #38bdf8;
2093
+ color: #075985;
2094
+ background: rgba(56, 189, 248, 0.06);
2095
+ }
2096
+ .workspace-add-clause:disabled {
2097
+ opacity: 0.5;
2098
+ cursor: not-allowed;
2099
+ }
2100
+ .workspace-filter-op-toggle {
2101
+ display: inline-flex;
2102
+ border: 1px solid #e5e5e5;
2103
+ border-radius: 6px;
2104
+ overflow: hidden;
2105
+ width: fit-content;
2106
+ background: #fafafa;
2107
+ }
2108
+ .workspace-filter-op-toggle button {
2109
+ border: 0;
2110
+ background: transparent;
2111
+ color: #666;
2112
+ padding: 5px 12px;
2113
+ cursor: pointer;
2114
+ font: inherit;
2115
+ font-size: 12px;
2116
+ font-weight: 600;
2117
+ letter-spacing: 0.04em;
2118
+ }
2119
+ .workspace-filter-op-toggle button.active {
2120
+ background: #fff;
2121
+ color: #075985;
2122
+ box-shadow: inset 0 0 0 1px #38bdf8;
2123
+ }
2124
+
2125
+ /* Chart config */
2126
+ .workspace-chart-config {
2127
+ display: grid;
2128
+ gap: 12px;
2129
+ }
2130
+ .workspace-chart-type-tabs {
2131
+ display: grid;
2132
+ grid-template-columns: repeat(6, 1fr);
2133
+ gap: 2px;
2134
+ border: 1px solid #ececec;
2135
+ border-radius: 8px;
2136
+ padding: 3px;
2137
+ background: #fafafa;
2138
+ }
2139
+ .workspace-chart-type-tabs button {
2140
+ display: grid;
2141
+ place-items: center;
2142
+ gap: 2px;
2143
+ padding: 6px 4px;
2144
+ border: 0;
2145
+ border-radius: 5px;
2146
+ background: transparent;
2147
+ color: #888;
2148
+ font: inherit;
2149
+ cursor: pointer;
2150
+ }
2151
+ .workspace-chart-type-tabs button em {
2152
+ font-style: normal;
2153
+ font-size: 9px;
2154
+ font-weight: 600;
2155
+ text-transform: uppercase;
2156
+ letter-spacing: 0.04em;
2157
+ color: #999;
2158
+ }
2159
+ .workspace-chart-type-tabs button:hover {
2160
+ background: #fff;
2161
+ }
2162
+ .workspace-chart-type-tabs button.active {
2163
+ background: #fff;
2164
+ color: #075985;
2165
+ box-shadow: 0 0 0 1px #38bdf8;
2166
+ }
2167
+ .workspace-chart-type-tabs button.active em {
2168
+ color: #075985;
2169
+ }
2170
+ .workspace-axis-range {
2171
+ display: grid;
2172
+ grid-template-columns: 1fr 1fr;
2173
+ gap: 8px;
2174
+ }
2175
+ .workspace-toggle-row {
2176
+ display: flex !important;
2177
+ align-items: center;
2178
+ justify-content: space-between;
2179
+ flex-direction: row !important;
2180
+ padding: 4px 0;
2181
+ }
2182
+ .workspace-toggle-row span {
2183
+ color: #666 !important;
2184
+ font-size: 13px !important;
2185
+ font-weight: 500 !important;
2186
+ text-transform: none !important;
2187
+ }
2188
+ .workspace-toggle-row input[type="checkbox"] {
2189
+ width: 36px;
2190
+ height: 20px;
2191
+ appearance: none;
2192
+ border-radius: 999px;
2193
+ background: #d8d8d8;
2194
+ position: relative;
2195
+ cursor: pointer;
2196
+ transition: background 0.15s ease;
2197
+ }
2198
+ .workspace-toggle-row input[type="checkbox"]::after {
2199
+ content: "";
2200
+ position: absolute;
2201
+ top: 2px;
2202
+ left: 2px;
2203
+ width: 16px;
2204
+ height: 16px;
2205
+ border-radius: 50%;
2206
+ background: #fff;
2207
+ box-shadow: 0 1px 2px rgba(0,0,0,0.18);
2208
+ transition: left 0.15s ease;
2209
+ }
2210
+ .workspace-toggle-row input[type="checkbox"]:checked {
2211
+ background: #38bdf8;
2212
+ }
2213
+ .workspace-toggle-row input[type="checkbox"]:checked::after {
2214
+ left: 18px;
2215
+ }
2216
+
2217
+ /* Chart preview kind variants */
2218
+ .workspace-chart-preview.kind-bar-horizontal {
2219
+ flex-direction: column;
2220
+ align-items: stretch;
2221
+ justify-content: center;
2222
+ gap: 4px;
2223
+ padding: 8px;
2224
+ }
2225
+ .workspace-chart-preview .workspace-chart-bar-h {
2226
+ height: 12px;
2227
+ background: #38bdf8;
2228
+ border-radius: 3px;
2229
+ position: relative;
2230
+ }
2231
+ .workspace-chart-preview .workspace-chart-bar-h em {
2232
+ position: absolute;
2233
+ right: 4px;
2234
+ top: -2px;
2235
+ font-size: 10px;
2236
+ font-style: normal;
2237
+ color: #075985;
2238
+ }
2239
+ .workspace-chart-preview.kind-pie {
2240
+ display: grid;
2241
+ place-items: center;
2242
+ }
2243
+ .workspace-chart-preview .workspace-chart-pie {
2244
+ width: 60%;
2245
+ aspect-ratio: 1;
2246
+ border-radius: 50%;
2247
+ background: conic-gradient(#38bdf8 0 60%, #93c5fd 60% 85%, #cffafe 85% 100%);
2248
+ }
2249
+ .workspace-chart-preview.kind-line {
2250
+ display: grid;
2251
+ place-items: center;
2252
+ padding: 8px;
2253
+ }
2254
+ .workspace-chart-preview .workspace-chart-line {
2255
+ width: 90%;
2256
+ height: 60%;
2257
+ background: linear-gradient(180deg, transparent 0, transparent 100%);
2258
+ border-bottom: 2px solid #38bdf8;
2259
+ position: relative;
2260
+ }
2261
+ .workspace-chart-preview .workspace-chart-line::after {
2262
+ content: "";
2263
+ position: absolute;
2264
+ inset: 0;
2265
+ background: linear-gradient(135deg, transparent 30%, rgba(56,189,248,0.18) 60%, transparent 90%);
2266
+ }
2267
+ .workspace-chart-preview.kind-sum {
2268
+ display: grid;
2269
+ place-items: center;
2270
+ }
2271
+ .workspace-chart-preview .workspace-chart-sum {
2272
+ font-size: 28px;
2273
+ font-weight: 700;
2274
+ color: #075985;
2275
+ letter-spacing: -0.02em;
2276
+ }
2277
+ .workspace-chart-preview.kind-gauge {
2278
+ display: grid;
2279
+ place-items: center;
2280
+ }
2281
+ .workspace-chart-preview .workspace-chart-gauge {
2282
+ width: 72%;
2283
+ height: 36%;
2284
+ border-radius: 999px 999px 0 0;
2285
+ background:
2286
+ radial-gradient(circle at 50% 100%, transparent 56%, #38bdf8 56%, #38bdf8 var(--gauge-fill, 70%), #e5e5e5 var(--gauge-fill, 70%));
2287
+ position: relative;
2288
+ }
2289
+ .workspace-chart-preview span em {
2290
+ display: block;
2291
+ font-style: normal;
2292
+ text-align: center;
2293
+ font-size: 10px;
2294
+ color: #075985;
2295
+ }
2296
+
2297
+ /* Command palette */
2298
+ .workspace-command-palette {
2299
+ position: fixed;
2300
+ inset: 0;
2301
+ z-index: 60;
2302
+ display: grid;
2303
+ place-items: start center;
2304
+ padding-top: 12vh;
2305
+ }
2306
+ .workspace-command-palette .workspace-overlay-backdrop {
2307
+ position: absolute;
2308
+ inset: 0;
2309
+ background: rgba(8, 11, 18, 0.32);
2310
+ backdrop-filter: blur(2px);
2311
+ }
2312
+ .workspace-command-palette-panel {
2313
+ position: relative;
2314
+ width: min(540px, 92vw);
2315
+ background: #fff;
2316
+ border: 1px solid #e8e8e8;
2317
+ border-radius: 12px;
2318
+ box-shadow: 0 24px 48px rgba(8, 11, 18, 0.18);
2319
+ overflow: hidden;
2320
+ display: flex;
2321
+ flex-direction: column;
2322
+ }
2323
+ .workspace-command-palette-input {
2324
+ display: grid;
2325
+ grid-template-columns: 24px 1fr auto;
2326
+ align-items: center;
2327
+ gap: 10px;
2328
+ padding: 10px 14px;
2329
+ border-bottom: 1px solid #ececec;
2330
+ }
2331
+ .workspace-command-palette-input span {
2332
+ color: #888;
2333
+ font-size: 14px;
2334
+ }
2335
+ .workspace-command-palette-input input {
2336
+ border: 0;
2337
+ outline: 0;
2338
+ font: inherit;
2339
+ font-size: 14px;
2340
+ color: #333;
2341
+ background: transparent;
2342
+ width: 100%;
2343
+ }
2344
+ .workspace-command-palette-input kbd {
2345
+ font-size: 10px;
2346
+ font-family: inherit;
2347
+ background: #f3f3f3;
2348
+ border: 1px solid #e5e5e5;
2349
+ color: #888;
2350
+ padding: 1px 6px;
2351
+ border-radius: 4px;
2352
+ }
2353
+ .workspace-command-palette-list {
2354
+ max-height: min(60vh, 480px);
2355
+ overflow-y: auto;
2356
+ padding: 6px;
2357
+ }
2358
+ .workspace-command-palette-group {
2359
+ padding: 4px 0;
2360
+ }
2361
+ .workspace-command-palette-group .workspace-panel-label {
2362
+ margin: 6px 8px;
2363
+ color: #aaa;
2364
+ font-size: 10px;
2365
+ }
2366
+ .workspace-command-palette-item {
2367
+ display: grid;
2368
+ grid-template-columns: 22px 1fr auto;
2369
+ align-items: center;
2370
+ gap: 10px;
2371
+ width: 100%;
2372
+ border: 0;
2373
+ background: transparent;
2374
+ color: #444;
2375
+ font: inherit;
2376
+ font-size: 13px;
2377
+ padding: 7px 8px;
2378
+ border-radius: 6px;
2379
+ cursor: pointer;
2380
+ text-align: left;
2381
+ }
2382
+ .workspace-command-palette-item span:first-child {
2383
+ font-size: 14px;
2384
+ color: #888;
2385
+ }
2386
+ .workspace-command-palette-item.active {
2387
+ background: rgba(56, 189, 248, 0.1);
2388
+ color: #075985;
2389
+ }
2390
+ .workspace-command-palette-item.disabled {
2391
+ opacity: 0.45;
2392
+ cursor: not-allowed;
2393
+ }
2394
+ .workspace-command-palette-item kbd {
2395
+ font-size: 10px;
2396
+ font-family: inherit;
2397
+ background: #f3f3f3;
2398
+ border: 1px solid #e5e5e5;
2399
+ color: #888;
2400
+ padding: 1px 6px;
2401
+ border-radius: 4px;
2402
+ }
2403
+ .workspace-command-palette-footer {
2404
+ display: flex;
2405
+ gap: 12px;
2406
+ padding: 6px 12px;
2407
+ border-top: 1px solid #ececec;
2408
+ color: #aaa;
2409
+ font-size: 11px;
2410
+ }
2411
+
2412
+ /* Template gallery filters */
2413
+ .template-gallery-filters {
2414
+ display: grid;
2415
+ grid-template-columns: 1fr auto auto;
2416
+ gap: 8px;
2417
+ padding: 0 16px 12px;
2418
+ border-bottom: 1px solid #ececec;
2419
+ }
2420
+ .template-gallery-filters input,
2421
+ .template-gallery-filters select {
2422
+ border: 1px solid #e5e5e5;
2423
+ border-radius: 6px;
2424
+ background: #fafafa;
2425
+ font: inherit;
2426
+ font-size: 13px;
2427
+ padding: 7px 9px;
2428
+ color: #444;
2429
+ }
2430
+
2431
+ @media (max-width: 720px) {
2432
+ .workspace-chart-type-tabs {
2433
+ grid-template-columns: repeat(3, 1fr);
2434
+ }
2435
+ .template-gallery-filters {
2436
+ grid-template-columns: 1fr;
2437
+ }
2438
+ }