Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_device-status.scss 726B

1234567891011121314151617181920212223242526272829303132333435
  1. .device {
  2. &-status {
  3. align-items: center;
  4. align-self: stretch;
  5. color: #fff;
  6. display: flex;
  7. font-size: 14px;
  8. font-weight: 400;
  9. justify-content: center;
  10. line-height: 20px;
  11. margin-top: 8px;
  12. padding: 6px;
  13. text-align: center;
  14. }
  15. &-icon {
  16. background-position: center;
  17. background-repeat: no-repeat;
  18. display: inline-block;
  19. height: 16px;
  20. margin-right: 10px;
  21. width: 16px;
  22. &--warning {
  23. svg path {
  24. fill: rgba(241, 173, 51, 1);
  25. }
  26. }
  27. &--ok {
  28. svg path {
  29. fill: #189b55;
  30. }
  31. }
  32. }
  33. }