main
Last change
on this file since 3b6962d was 702ca77, checked in by unknown <mlviktor23@…>, 2 years 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
|
Rev | Line | |
---|
[702ca77] | 1 | import styled from "styled-components";
|
---|
| 2 |
|
---|
| 3 | export const UserDetailsCard = styled.div`
|
---|
| 4 | width: auto;
|
---|
| 5 | padding: 10px;
|
---|
| 6 | margin-top: 20px;
|
---|
| 7 | margin-bottom: 30px;
|
---|
| 8 | `;
|
---|
| 9 |
|
---|
| 10 | export const UserDetailsCardContent = styled.p`
|
---|
| 11 | padding-top: 7px;
|
---|
| 12 | padding-bottom: 7px;
|
---|
| 13 | `;
|
---|
| 14 |
|
---|
| 15 | export 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.