fix(windows): CSS nit (#3463)

Before this change, some of the background was (252, 252, 252) (#fcfcfc,
bg-neutral-50) and some was #ffffff white


![image](https://github.com/firezone/firezone/assets/13400041/ebfd0488-2ee7-4790-85d2-dee86edbe272)

After this change, all the background is (248, 247, 247) (#f8f7f7,
bg-neutral-100)


![image](https://github.com/firezone/firezone/assets/13400041/22185728-aa1b-4f45-a888-74a8a4120a8d)

"Before" with exaggerated contrast: 

![image](https://github.com/firezone/firezone/assets/13400041/de63471b-48cd-4073-936b-bf5a0df888c8)
This commit is contained in:
Reactor Scram
2024-01-31 14:49:17 -06:00
committed by GitHub
parent 2fba4406a6
commit d9ac4fa443

View File

@@ -9,7 +9,7 @@
<script type="module" src="settings.js" defer></script>
</head>
<body class="bg-netural-100 text-neutral-900">
<body class="bg-neutral-100 text-neutral-900">
<div class="container mx-auto">
<div class="mb-4 border-b border-neutral-300">
<ul
@@ -48,7 +48,7 @@
</div>
<div id="tab-content">
<div
class="hidden p-4 rounded-lg bg-neutral-50"
class="hidden p-4 rounded-lg"
id="advanced"
role="tabpanel"
aria-labelledby="advanced-tab"