diff --git a/src/components/atoms/SearchResults.module.scss b/src/components/atoms/SearchResults.module.scss index e32e90b0..c26802bf 100644 --- a/src/components/atoms/SearchResults.module.scss +++ b/src/components/atoms/SearchResults.module.scss @@ -15,6 +15,11 @@ margin-top: $spacer; + li { + margin-left: $spacer; + margin-right: $spacer; + } + li::before { top: $spacer / 7; } diff --git a/src/components/molecules/Search.module.scss b/src/components/molecules/Search.module.scss index 74e2792e..aacdff2c 100644 --- a/src/components/molecules/Search.module.scss +++ b/src/components/molecules/Search.module.scss @@ -25,7 +25,7 @@ &.appearActive, &.enterActive { opacity: 1; - transition: 200ms cubic-bezier(.4, 1.72, .61, .7); + transition: .2s ease-out; transform: translate3d(0, 0, 0); } } @@ -36,7 +36,7 @@ &.exitActive { opacity: .01; - transition: 200ms ease-in; + transition: .2s ease-in; transform: translate3d(0, -100px, 0); } } diff --git a/src/images/google+.svg b/src/images/googleplus.svg similarity index 100% rename from src/images/google+.svg rename to src/images/googleplus.svg diff --git a/src/pages/photos.module.scss b/src/pages/photos.module.scss index 60346609..4bffb426 100644 --- a/src/pages/photos.module.scss +++ b/src/pages/photos.module.scss @@ -7,6 +7,13 @@ display: flex; flex-wrap: wrap; justify-content: space-between; + padding-left: $spacer; + padding-right: $spacer; + + @media (min-width: $screen-md) { + padding-left: 0; + padding-right: 0; + } } .photo {