source: reactapp/src/Components/Styled/Main.style.js@ 702ca77

main
Last change on this file since 702ca77 was 702ca77, checked in by unknown <mlviktor23@…>, 23 months ago

added current user/logout in header, display karma on user dashboard, started add post functionality in react

  • Property mode set to 100644
File size: 460 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 margin-bottom: 20px;
9 padding-left: 50px;
10 padding-right: 50px;
11 padding-top: 30px;
12 padding-bottom: 30px;
13 width: 80%;
14`;
15
16export const MainTitle = styled.h1`
17 font-size: 36pt;
18 text-decoration: underline 3px;
19 width: fit-content;
20 float: left;
21 color: black;
22`;
Note: See TracBrowser for help on using the repository browser.