fix: add margin to theme selector

This commit is contained in:
Paul 2021-12-24 15:51:11 +00:00
parent c64906051d
commit 739dd53637

View file

@ -1,17 +1,15 @@
import { observer } from "mobx-react-lite";
import styled from "styled-components";
import { Text } from "preact-i18n";
import { useApplicationState } from "../../../mobx/State";
import darkSVG from "./dark.svg";
import lightSVG from "./light.svg";
const List = styled.div`
gap: 8px;
display: flex;
width: 100%;
display: flex;
margin-bottom: 15px;
> div {
min-width: 0;
@ -29,6 +27,7 @@ const List = styled.div`
&[data-active="true"] {
cursor: default;
border: 3px solid var(--accent);
&:hover {
border: 3px solid var(--accent);
}