You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_device-status.scss 756B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .device {
  2. &-status {
  3. align-items: center;
  4. color: #fff;
  5. display: flex;
  6. font-size: 14px;
  7. line-height: 20px;
  8. padding: 6px;
  9. text-align: center;
  10. &-error {
  11. align-items: flex-start;
  12. background-color: #F8AE1A;
  13. border-radius: 6px;
  14. color: #040404;
  15. padding: 12px 16px;
  16. text-align: left;
  17. }
  18. span {
  19. margin-left: 16px;
  20. }
  21. }
  22. &-icon {
  23. background-position: center;
  24. background-repeat: no-repeat;
  25. display: inline-block;
  26. height: 16px;
  27. width: 16px;
  28. &--ok {
  29. svg path {
  30. fill: #189b55;
  31. }
  32. }
  33. }
  34. }