mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-13 18:21:28 +01:00
16 lines
289 B
JavaScript
16 lines
289 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
button.submit {
|
|
color: white;
|
|
background-color: var(--color-background-danger) !important;
|
|
border: inherit !important;
|
|
|
|
&:hover {
|
|
border: inherit !important;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|