diff --git a/src/index.css b/src/index.css index ba435a31d..13cfebd15 100644 --- a/src/index.css +++ b/src/index.css @@ -26,10 +26,9 @@ body { font-family: 'Montserrat', sans-serif; } -ul li { - list-style: disc; - margin-left: 1em; - padding: 0; +ul:not(.list-none) li:before { + content: '●'; + padding-right: 6px; } input[type='range']::-moz-range-thumb { diff --git a/src/shared/TabBar.js b/src/shared/TabBar.js index 9ab21bacb..2fb20765d 100644 --- a/src/shared/TabBar.js +++ b/src/shared/TabBar.js @@ -3,8 +3,8 @@ import React, { useRef } from 'react'; const TabBar = ({ tabs, currentTab, setCurrentTab }) => { const tabsRef = useRef(null); - const scrollBy = x => { - const index = tabs.findIndex(tab => tab.key === currentTab); + const scrollBy = (x) => { + const index = tabs.findIndex((tab) => tab.key === currentTab); tabsRef.current.scrollLeft += x; if (x < 0 && index > 0) { @@ -25,8 +25,8 @@ const TabBar = ({ tabs, currentTab, setCurrentTab }) => { chevron_left -