mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-14 09:11:42 +01:00
24 lines
406 B
TypeScript
24 lines
406 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const StyledReCAPTCHA = styled.div`
|
|
font-size: 13px;
|
|
width: 300px;
|
|
margin: auto;
|
|
}`;
|
|
|
|
export const StyledNav = styled.div`
|
|
.db-warn-msg {
|
|
margin-top: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.db-warn-msg p {
|
|
margin: 0 auto;
|
|
width: 500px;
|
|
background-color: #e97450;
|
|
font-size: 15px;
|
|
color: white;
|
|
padding: 15px 30px;
|
|
border-radius: 10px;
|
|
}`;
|