2
0

_workflow-tasks.scss 783 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .workflow-tasks {
  2. $task-width: 117px;
  3. $task-height: 56px;
  4. list-style-type: none;
  5. &__task {
  6. display: inline-block;
  7. background-color: theme('colors.surface-page');
  8. border: 2px solid theme('colors.border-button-outline-default');
  9. border-radius: 5px;
  10. color: theme('colors.text-link-default');
  11. min-width: $task-width;
  12. height: $task-height;
  13. margin: 7px;
  14. padding-inline-start: 9px;
  15. padding-inline-end: 9px;
  16. }
  17. &__step {
  18. font-size: 0.625rem;
  19. margin-top: 0.1875rem;
  20. }
  21. &__name {
  22. font-size: 1rem;
  23. font-weight: bold;
  24. margin: 0;
  25. overflow: hidden;
  26. white-space: nowrap;
  27. text-overflow: ellipsis;
  28. }
  29. &__extra-tasks {
  30. display: inline-block;
  31. height: $task-height;
  32. vertical-align: middle;
  33. }
  34. }