index.scss
54 lines
| 1 | .presto-toolbar { |
| 2 | &__button { |
| 3 | display: flex; |
| 4 | justify-content: center; |
| 5 | gap: 0; |
| 6 | align-items: center; |
| 7 | padding: 4px; |
| 8 | } |
| 9 | |
| 10 | &__badge { |
| 11 | width: 6px; |
| 12 | height: 6px; |
| 13 | border-radius: 50%; |
| 14 | margin: 10px; |
| 15 | background-color: #c49000; |
| 16 | |
| 17 | &.is-active { |
| 18 | background-color: #02b80d; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | &__icon { |
| 23 | width: 12px; |
| 24 | line-height: 0; |
| 25 | margin: 8px; |
| 26 | } |
| 27 | |
| 28 | &__popover-content { |
| 29 | padding: 2em; |
| 30 | width: 250px; |
| 31 | max-width: 100vw; |
| 32 | overflow: auto; |
| 33 | display: grid; |
| 34 | gap: 20px; |
| 35 | } |
| 36 | |
| 37 | &__radio { |
| 38 | & .components-flex { |
| 39 | gap: 12px; |
| 40 | } |
| 41 | |
| 42 | & .components-radio-control__input { |
| 43 | margin-right: 10px; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | &__description { |
| 48 | margin: 0; |
| 49 | font-size: 12px; |
| 50 | font-style: normal; |
| 51 | color: rgb(117, 117, 117); |
| 52 | } |
| 53 | } |
| 54 |