Skip to content

Commit b076366

Browse files
committed
fix: using little off white color as background
1 parent 78fa5cc commit b076366

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

components/navbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<header class="fixed top-0 left-0 right-0 bg-white shadow-lg z-100">
2+
<header class="fixed top-0 left-0 right-0 shadow-lg bg-gray-50 z-100">
33
<div class="container flex items-center h-full py-4 m-auto">
44
<div v-if="showBackButton" class="mr-4">
55
<NuxtLink to="/">

pages/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
<div class="flex flex-wrap w-full h-full gap-4">
1313
<textarea
1414
id="lhs"
15-
class="flex-1 h-full max-h-full rounded-md resize-none form-textarea"
15+
class="flex-1 h-full max-h-full bg-transparent rounded-md resize-none form-textarea"
1616
></textarea>
1717
<textarea
1818
id="rhs"
19-
class="flex-1 h-full max-h-full rounded-md resize-none form-textarea"
19+
class="flex-1 h-full max-h-full bg-transparent rounded-md resize-none form-textarea"
2020
></textarea>
2121
<div class="self-end w-full text-center">
2222
<button

styles/global.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ body,
66
.page-root,
77
main {
88
@apply h-full;
9+
@apply bg-gray-50;
910
}
1011

1112
body {

tailwind.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
mode: 'jit',
3+
darkMode: 'class',
34
theme: {
45
maxHeight: {
56
'screen--nav': 'calc(100vh - 7rem)',

0 commit comments

Comments
 (0)