aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/ui/Button.css
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-11-30 20:49:48 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-11-30 20:49:48 +0100
commita68ba30716062b265f85c4be078a736c7135d7bc (patch)
treedd079a2d3860349402ad5b614659fedcb90c2b99 /src/frontend/app/components/ui/Button.css
parentcee521142a4e0673b155d97c3e4825b7fec1987f (diff)
Refactor StopMap and Settings components; replace region config usage with REGION_DATA, update StopDataProvider calls, and improve UI elements. Remove unused timetable files and add Tailwind CSS support.
Diffstat (limited to 'src/frontend/app/components/ui/Button.css')
-rw-r--r--src/frontend/app/components/ui/Button.css39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/frontend/app/components/ui/Button.css b/src/frontend/app/components/ui/Button.css
deleted file mode 100644
index bf02a7c..0000000
--- a/src/frontend/app/components/ui/Button.css
+++ /dev/null
@@ -1,39 +0,0 @@
-.ui-button {
- display: inline-flex;
- align-items: center;
- gap: 0.5rem;
- padding: 0.75rem 1.5rem;
- border-radius: 0.5rem;
- font-size: 0.9rem;
- font-weight: 500;
- cursor: pointer;
- transition: background-color 0.2s ease, transform 0.1s ease;
- border: none;
-}
-
-.ui-button:active {
- transform: translateY(1px);
-}
-
-.ui-button--primary {
- background: var(--button-background-color);
- color: white;
-}
-
-.ui-button--primary:hover {
- background: var(--button-hover-background-color);
-}
-
-.ui-button--secondary {
- background: var(--border-color);
- color: var(--text-color);
-}
-
-.ui-button--secondary:hover {
- background: #e0e0e0;
-}
-
-.ui-button__icon {
- display: flex;
- align-items: center;
-}