import styled from "@emotion/styled"; import { LIGHT_SECONDARY_FIVE, LIGHT_TERTIARY_ONE, LIGHT_TERTIARY_TWO, } from "../../../shared/colors"; export const Button = styled.button` display: flex; align-items: center; justify-content: center; background-color: ${LIGHT_TERTIARY_ONE}; border-radius: 4px; cursor: pointer; &:hover { background-color: ${LIGHT_TERTIARY_TWO}; } transition: background-color 0.16s ease-in-out; border: 0px; padding: 4px 8px; color: ${LIGHT_SECONDARY_FIVE}; font-size: 14px; `; export const Input = styled.input` -webkit-appearance: none; border: none; background-image: none; background-color: rgb(45, 47, 49); padding: 10px 12px; border-radius: 4px; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.18); font-size: 14px; :focus { outline: none; } ::placeholder { color: #a0a0a0; } color: rgb(244, 244, 246); `;