source: reactapp/src/Components/OpinionCard.style.js@ 5347491

main
Last change on this file since 5347491 was 5347491, checked in by unknown <mlviktor23@…>, 2 years ago

styled professor page, added date translation to datePosted, added indentation for replies

  • Property mode set to 100644
File size: 321 bytes
Line 
1import styled from "styled-components";
2
3export const OpinionCard = styled.div`
4 background-color: papayawhip;
5 width: fit-content;
6`;
7
8export const OpinionReplyCard = styled.div`
9 background-color: lavender;
10 width: fit-content;
11 margin-top: 7px;
12 margin-bottom: 7px;
13 margin-left: ${(props) => props.indent};
14`;
Note: See TracBrowser for help on using the repository browser.