Skip to content

Commit

Permalink
Eagle eye feed settings drawer (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaspergrom authored Feb 13, 2023
1 parent 4512a32 commit 514adc4
Show file tree
Hide file tree
Showing 12 changed files with 533 additions and 84 deletions.
12 changes: 12 additions & 0 deletions frontend/src/assets/scss/form/form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,15 @@
@apply flex flex-row-reverse gap-1 mb-1 text-xs text-gray-900 font-semibold;
}
}

.el-form-item.no-margin .el-form-item__content{
@apply mb-0;
}

.el-form-item.is-error-relative .el-form-item__error{
position: relative;
top: 0%;
}
.el-form-item.is-error-above .el-form-item__error{
top: -1rem;
}
6 changes: 6 additions & 0 deletions frontend/src/assets/scss/form/radio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
@apply text-brand-500;
}
}

&.is-small {
.el-radio-button__inner {
@apply p-2;
}
}
}

&.radio-chips {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<script setup>
import { formatDateToTimeAgo } from '@/utils/date'
import { computed, defineProps } from 'vue'
import { platformOptions } from '@/premium/eagle-eye/eagle-eye-constants'
import platformOptions from '@/premium/eagle-eye/constants/eagle-eye-platforms.json'
import { withHttp } from '@/utils/string'
import {
mapActions,
Expand Down
Loading

0 comments on commit 514adc4

Please sign in to comment.