annotate resources/sass/badges.scss @ 2:90296614b7e2 default tip

Adding in the base for the clients table
author luka
date Thu, 28 Aug 2025 20:55:40 -0400
parents 9d7dcd54c677
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
1 .badge{
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
2 &.yellow {
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
3 background-color: $yellow-100;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
4 color: $yellow-700;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
5 }
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
6
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
7 &.orange {
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
8 background-color: $orange-100;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
9 color: $orange-700;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
10 }
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
11 &.green {
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
12 background-color: $green-100;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
13 color: $green-700;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
14 }
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
15
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
16 &.blue {
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
17 background-color: $blue-100;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
18 color: $blue-700;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
19 }
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
20
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
21 &.gray {
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
22 background-color: $gray-200;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
23 color: $gray-700;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
24 }
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
25
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
26 &.red {
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
27 background-color: $red-100;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
28 color: $red-700;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
29 }
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
30 }