source: reactapp/src/Components/Styled/ProfessorCard.style.js@ af801e3

main
Last change on this file since af801e3 was af801e3, checked in by viktor <viktor@…>, 19 months ago

finished edit/delete/displace opinion/thread from report (react); todo reporting user/opinion/thread interface, public user pages and messaging (springboot)

  • Property mode set to 100644
File size: 449 bytes
Line 
1import styled from "styled-components";
2
3export const ProfessorCard = styled.div`
4 width: auto;
5 padding: 10px;
6 margin-bottom: 30px;
7 margin-top: 40px;
8`;
9
10export const ProfessorCardName = styled.h2`
11 margin-bottom: 10px; ;
12`;
13
14export const ProfessorCardSeparator = styled.hr`
15 color: darkslategray;
16 margin: 0;
17`;
18
19export const ProfessorCardDetails = styled.h3`
20 font-size: ${(props) => props.fontSize};
21 color: black;
22 opacity: 0.6;
23`;
Note: See TracBrowser for help on using the repository browser.