diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-19 00:36:30 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2023-08-19 00:36:30 +1000 |
| commit | dfff79815acc86c02dd94716098d409d3fe46ab7 (patch) | |
| tree | efb5d4176a9b094b3b40b1a968789931cc861d54 /MainLayout.razor.css | |
| parent | a57b6ea2e174cedb04a422a05a180f377ed4c448 (diff) | |
Added basic search engine functionality
Diffstat (limited to 'MainLayout.razor.css')
| -rw-r--r-- | MainLayout.razor.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/MainLayout.razor.css b/MainLayout.razor.css index e82e72e..3d03d61 100644 --- a/MainLayout.razor.css +++ b/MainLayout.razor.css @@ -20,15 +20,21 @@ div#navbar > a:active { color: var(--col-navbar-bg); } -div#navbar > input { +div#navbar form { + display: flex; + margin: 0 20px 0 auto; + min-width: 30%; +} + +div#navbar input[type="text"] { align-self: center; background: var(--col-bg); border-radius: 0; color: white; - height: 40px !important; - margin: 0 20px 0 auto; font-size: 12pt; - min-width: 30%; + height: 40px !important; + margin: 0; + width: 100%; } #content { |
