Skip to content
Snippets Groups Projects
ComboBox.tsx 533 B
import styled from "styled-components";

export default styled.select`
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border-radius: var(--border-radius);

    font-family: inherit;
    font-size: var(--text-size);
    color: var(--secondary-foreground);
    background: var(--secondary-background);

    border: none;
    outline: 2px solid transparent;
    transition: box-shadow 0.2s ease-in-out;
    transition: outline-color 0.2s ease-in-out;

    &:focus {
        box-shadow: 0 0 0 1.5pt var(--accent);
    }
`;