Skip to content

Commit

Permalink
Fix CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Wilms committed Dec 16, 2024
1 parent ad3ff85 commit 014a281
Showing 1 changed file with 8 additions and 40 deletions.
48 changes: 8 additions & 40 deletions src/Nexus/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -954,10 +954,6 @@ video {
white-space: nowrap;
}

.whitespace-nowrap {
white-space: nowrap;
}

.break-all {
word-break: break-all;
}
Expand Down Expand Up @@ -1191,10 +1187,6 @@ video {
padding-bottom: 0.75rem;
}

.pb-1 {
padding-bottom: 0.25rem;
}

.pb-2 {
padding-bottom: 0.5rem;
}
Expand Down Expand Up @@ -1282,6 +1274,10 @@ video {
text-transform: uppercase;
}

.italic {
font-style: italic;
}

.tracking-widest {
letter-spacing: 0.1em;
}
Expand Down Expand Up @@ -1326,11 +1322,6 @@ video {
color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-700 {
--tw-text-opacity: 1;
color: rgb(55 65 81 / var(--tw-text-opacity));
}

.text-orange-500 {
--tw-text-opacity: 1;
color: rgb(249 115 22 / var(--tw-text-opacity));
Expand Down Expand Up @@ -1385,6 +1376,10 @@ video {
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

html, body {
font-family: Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
Expand Down Expand Up @@ -1577,11 +1572,6 @@ html {
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.hover\:bg-gray-50:hover {
--tw-bg-opacity: 1;
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.hover\:bg-teal-500:hover {
--tw-bg-opacity: 1;
background-color: rgb(20 184 166 / var(--tw-bg-opacity));
Expand All @@ -1602,12 +1592,6 @@ html {
color: rgb(220 38 38 / var(--tw-text-opacity));
}

.hover\:shadow-lg:hover {
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px;
Expand Down Expand Up @@ -1693,12 +1677,6 @@ html {
}
}

@media (min-width: 768px) {
.md\:w-1\/2 {
width: 50%;
}
}

@media (min-width: 1280px) {
.xl\:inline {
display: inline;
Expand All @@ -1711,14 +1689,4 @@ html {
.xl\:hidden {
display: none;
}

.xl\:w-full {
width: 100%;
}
}

@media (min-width: 1536px) {
.\32xl\:w-1\/4 {
width: 25%;
}
}

0 comments on commit 014a281

Please sign in to comment.