Fix all comments

This commit is contained in:
2023-11-05 18:28:51 +07:00
parent b0dd3abf0e
commit 3f95ce8343
39 changed files with 483 additions and 443 deletions
@@ -11,7 +11,7 @@ const Button = styled.button<IButtonStyle>`
font-weight: 600;
cursor: pointer;
border-radius: var(--radius-md);
${(props) =>
@@ -2,9 +2,11 @@ import styled from 'styled-components';
const ButtonIcon = styled.button`
background: none;
border: none;
padding: 8px;
transition: all 0.2s;
border: none;
border-radius: var(--radius-md);
&:hover {
@@ -3,9 +3,11 @@ import { css } from 'styled-components';
const CommonInput = css`
border: 1px solid var(--border-color);
border-radius: var(--radius-sm);
padding: 10px 20px;
font-size: var(--fs-sm-x);
padding: 10px 20px;
font-size: var(--fs-sm-x);
width: 200px;
`;