diff --git a/components/SearchModal/index.scss b/components/SearchModal/index.scss index 05809b02..ec7de280 100644 --- a/components/SearchModal/index.scss +++ b/components/SearchModal/index.scss @@ -12,7 +12,7 @@ display: flex; gap: $unit * 2.5; margin: 0; - padding: ($unit * 3) ($unit * 3) ($unit * 2) ($unit * 3); + padding: ($unit * 3) ($unit * 3) ($unit) ($unit * 3); position: sticky; top: 0; @@ -27,7 +27,8 @@ width: 100%; .Input { - border: 1px solid $grey-70; + background: $grey-90; + border: none; border-radius: $unit / 2; box-sizing: border-box; font-size: $font-regular; @@ -40,9 +41,13 @@ #Results { margin: 0; - max-height: 330px; - padding: $unit ($unit * 1.5); + max-height: 356px; + padding: 0 ($unit * 1.5); overflow-y: scroll; + + .WeaponResult:last-child { + margin-bottom: $unit * 1.5; + } } } diff --git a/styles/variables.scss b/styles/variables.scss index 55d0a0ff..3b8264a3 100644 --- a/styles/variables.scss +++ b/styles/variables.scss @@ -63,6 +63,7 @@ $font-tiny: 11px; $font-small: 13px; $font-button: 15px; $font-regular: 16px; +$font-medium: 18px; $font-large: 21px; $font-xlarge: 24px; $font-xxlarge: 28px;