aboutsummaryrefslogtreecommitdiff
path: root/src/components/pickers/scss/_picker.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-10 22:45:28 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-10 22:45:28 +0530
commit0b4343bed2cace86552929f25202680c0d99c541 (patch)
treef5eb25902a401ff98827aed68377c7f221097f75 /src/components/pickers/scss/_picker.scss
parent6dd449f6f38e8afdee7638b56f24e61953854eda (diff)
added ItemTable for the invoice page
Diffstat (limited to 'src/components/pickers/scss/_picker.scss')
-rw-r--r--src/components/pickers/scss/_picker.scss38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/components/pickers/scss/_picker.scss b/src/components/pickers/scss/_picker.scss
index 625a1e3..4d8d1b1 100644
--- a/src/components/pickers/scss/_picker.scss
+++ b/src/components/pickers/scss/_picker.scss
@@ -65,41 +65,3 @@
color: $primaryAccentColor;
}
}
-
-@mixin picker {
- .picker {
- padding-bottom: 2.5rem;
- margin: auto;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-evenly;
- align-items: center;
- min-width: 90%;
- @include label;
-
- .buttons {
- position: absolute;
- display: flex;
- justify-content: space-between;
- width: 13.5rem;
- input {
- padding: 0.2rem 0;
- width: 4rem;
- background-color: $inputBackgroundColor;
- border: 1px solid $primaryAccentColor;
- color: $fgColor;
- border-radius: 4px;
- transition: background-color 0.4s, color 0.4s;
- }
- input:hover {
- background-color: $primaryAccentColor;
- color: $fgColorAlt;
- }
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- }
- }
-}