source: reactapp/src/Components/Styled/UserDetails.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: 600 bytes
Line 
1import styled from "styled-components";
2
3export const UserDetailsCard = styled.div`
4 width: auto;
5 padding: 10px;
6 margin-top: 20px;
7 margin-bottom: 30px;
8`;
9
10export const UserDetailsCardContent = styled.p`
11 padding-top: 7px;
12 padding-bottom: 7px;
13`;
14
15export const LogoutButton = styled.button`
16 font-family: "Roboto Mono", monospace;
17 background-color: tan;
18 border: none;
19 color: white;
20 padding: 4px 8px;
21 text-align: center;
22 font-size: 16px;
23 opacity: 0.6;
24 transition: 0.3s;
25 display: inline-block;
26 text-decoration: none;
27 cursor: pointer;
28 &:hover {
29 opacity: 1;
30 }
31`;
Note: See TracBrowser for help on using the repository browser.