Feature/feedbacktweaks (#11)

* Fix typo

* Fix 1px line showing in middle of divs

* Increase inline code padding by 2px

* Make masonry block not full width on screens larger than mobile

* Align list items

* Change button text to copied if it's been copied
This commit is contained in:
August Skare
2018-10-29 08:13:03 +00:00
committed by GitHub
parent 89e439c521
commit 3d4041ecd3
5 changed files with 33 additions and 24 deletions

View File

@@ -5,18 +5,24 @@ import { media } from '../variables';
const StyledList = styled.ul`
list-style-type: none;
margin: 0;
padding-inline-start: 0.2rem;
padding-inline-start: 0rem;
position: relative;
`;
const StyledItem = styled.li`
position: relative;
padding-left: 26px;
:before {
content: '';
position: absolute;
left: 0;
border: 1px solid black;
width: 0.6875rem;
height: 0.6875rem;
display: inline-block;
transform: rotate(45deg);
margin-right: 1.09375rem;
transform: rotate(45deg) translateY(-50%);
top: 12px;
}
:not(:last-child) {
margin-bottom: 0.5625rem;