mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 18:56:00 +00:00
prettier
This commit is contained in:
@@ -8,13 +8,13 @@ import { useForm } from '../utility/FormProvider';
|
||||
|
||||
const ButtonDiv = styled.div`
|
||||
padding: 5px 15px;
|
||||
color: ${(props) => props.theme.main_font1};
|
||||
border: 1px solid ${(props) => props.theme.border};
|
||||
color: ${props => props.theme.main_font1};
|
||||
border: 1px solid ${props => props.theme.border};
|
||||
width: 120px;
|
||||
height: 60px;
|
||||
background-color: ${(props) => props.theme.toolbar_background};
|
||||
background-color: ${props => props.theme.toolbar_background};
|
||||
|
||||
${(props) =>
|
||||
${props =>
|
||||
!props.disabled &&
|
||||
`
|
||||
&:hover {
|
||||
@@ -26,7 +26,7 @@ const ButtonDiv = styled.div`
|
||||
}
|
||||
`}
|
||||
|
||||
${(props) =>
|
||||
${props =>
|
||||
props.disabled &&
|
||||
`
|
||||
color: ${props.theme.main_font3};
|
||||
|
||||
Reference in New Issue
Block a user