diff --git a/src/Pages/Reports/TipAmountSettlement/Settlement.scss b/src/Pages/Reports/TipAmountSettlement/Settlement.scss new file mode 100644 index 0000000..4c45c67 --- /dev/null +++ b/src/Pages/Reports/TipAmountSettlement/Settlement.scss @@ -0,0 +1,35 @@ +/* Container for tabs */ +.settlementTabs { + display: inline-flex; + gap: 16px; + font-family: "Poppins"; + margin-bottom: 12px; + border-bottom: 1px solid #d1d5db; + +} + +/* Default tab style */ +.tabItem { + font-size: 22px; + font-weight: 600; + cursor: pointer; + color: #6b7280; + display: flex; + align-items: center; + gap: 6px; + position: relative; + border: none; + background: transparent; + font-family: "Gilroy"; + transition: color 0.2s ease; +} + +.tabItem.active { + color: #0f172a; + border-bottom: 2px solid #1296db !important; +} + +.tabContent { + margin-top: 20px; +} + \ No newline at end of file