diff --git a/src/components/LuxSearchBox.vue b/src/components/LuxSearchBox.vue index 5f56067..b1f6259 100644 --- a/src/components/LuxSearchBox.vue +++ b/src/components/LuxSearchBox.vue @@ -1,7 +1,24 @@ @@ -36,8 +53,8 @@ export default { box-sizing: border-box; display: flex; background: $color-white; - border-radius: $border-radius-default; margin-bottom: 1rem; + border: 2px solid #212529; &:hover, &[hover] { @@ -58,13 +75,23 @@ export default { :deep(.lux-input) { flex: 1; margin-bottom: 0; + font-size: small !important; + height: 3rem; input { border-top-right-radius: 0; border-bottom-right-radius: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } } + :deep(.default-button) { + background-color: $color-princeton-orange-on-white; + border-radius: 0px !important; + padding: 12px 15px; + } + :deep(.lux-button) { margin: 0; border-top-left-radius: 0; @@ -86,5 +113,10 @@ export default { + +
+ + +
```