Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
866c9b7
chore(deps): update dependency tailwindcss to v4
renovate[bot] Mar 24, 2026
64950f1
style: update Tailwind CSS utility classes for consistency and clarity
SteKoe Mar 25, 2026
667a65c
style: update background opacity utilities for improved consistency
SteKoe Mar 26, 2026
deb57fb
style: replace theme colors with CSS variables for improved maintaina…
SteKoe Mar 26, 2026
940c716
style: update color definitions to use rgb format for consistency
SteKoe Mar 26, 2026
7856434
style: remove SCSS language specification from style tags for consist…
SteKoe Mar 26, 2026
158809a
style: enhance table border styles for improved visibility and consis…
SteKoe Mar 26, 2026
884ca3e
style: refactor CSS imports and move theme variables to a new file fo…
SteKoe Mar 26, 2026
9ab6aee
style: enhance border styles for health group sections for improved v…
SteKoe Mar 26, 2026
6f6d3df
style: enhance border styles in login component for improved visibility
SteKoe Mar 26, 2026
4219f42
style: simplify border styles in sba-tag component for improved clarity
SteKoe Mar 26, 2026
3969495
chore: update package-lock.json to reflect dependency version upgrades
SteKoe Mar 26, 2026
dc4d0b9
style: update Tailwind CSS utility classes for consistency and clarity
SteKoe Mar 25, 2026
92c9962
test: update hexToRgb assertion to use rgb format for consistency
SteKoe Mar 26, 2026
a4b1b92
style: remove unused styles from logger-control component for cleaner…
SteKoe Mar 26, 2026
9fb3bc4
style: update whitespace utility class for improved formatting consis…
SteKoe Mar 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions spring-boot-admin-server-ui/.storybook/storybook.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
:root {
--main-50: 238, 252, 250;
--main-100: 217, 247, 244;
--main-200: 183, 240, 234;
--main-300: 145, 232, 224;
--main-400: 107, 224, 213;
--main-500: 71, 217, 203;
--main-600: 39, 190, 175;
--main-700: 30, 144, 132;
--main-800: 20, 97, 90;
--main-900: 10, 47, 43;
--main-50: rgb(238, 252, 250);
--main-100: rgb(217, 247, 244);
--main-200: rgb(183, 240, 234);
--main-300: rgb(145, 232, 224);
--main-400: rgb(107, 224, 213);
--main-500: rgb(71, 217, 203);
--main-600: rgb(39, 190, 175);
--main-700: rgb(30, 144, 132);
--main-800: rgb(20, 97, 90);
--main-900: rgb(10, 47, 43);
--bg-color-start: #91E8E0;
--bg-color-stop: #1E9084;
}
Loading