source: reactapp/src/Components/Main.style.js@ d654c74

main
Last change on this file since d654c74 was 0df6b9e, checked in by Viktor <mlviktor23@…>, 2 years ago

styled searchbar

  • Property mode set to 100644
File size: 444 bytes
Line 
1import styled from "styled-components";
2
3export const MainWrapper = styled.div`
4 font-family: "Roboto Mono", monospace;
5 background-color: ivory;
6 margin: auto;
7 margin-top: 20px;
8 padding-left: 50px;
9 padding-right: 50px;
10 padding-top: 30px;
11 padding-bottom: 30px;
12 width: 80%;
13`;
14
15export const MainTitle = styled.h1`
16 font-size: 36pt;
17 text-decoration: underline 3px;
18 margin-bottom: 30px;
19 width: fit-content;
20 float: left;
21`;
Note: See TracBrowser for help on using the repository browser.