source: reactapp/src/Components/Search.style.js@ 080a3f3

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

styled search component

  • Property mode set to 100644
File size: 383 bytes
Line 
1import styled from "styled-components";
2
3export const SearchDropdownSmall = styled.div`
4 display: block;
5 background-color: #f9f9f9;
6 min-width: 160px;
7 box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
8 padding: 12px 16px;
9 z-index: 1;
10`;
11
12export const SearchDropdownContentSmall = styled.p`
13 font-weight: ${(props) => props.weight};
14 font-size: ${(props) => props.size};
15`;
Note: See TracBrowser for help on using the repository browser.