descriptions-item.scss 537 B

1234567891011121314151617181920212223242526272829303132
  1. @import 'mixins/mixins';
  2. @import 'common/var';
  3. @include b(descriptions-item) {
  4. @include e(container) {
  5. display: flex;
  6. }
  7. @include e(label) {
  8. &.has-colon {
  9. &::after {
  10. content: ':';
  11. position: relative;
  12. top: -0.5px;
  13. }
  14. }
  15. &.is-bordered-label {
  16. font-weight: bold;
  17. color: $--color-text-secondary;
  18. background: $--descriptions-item-bordered-label-background;
  19. }
  20. &:not(.is-bordered-label) {
  21. margin-right: 10px;
  22. }
  23. }
  24. @include e(content) {
  25. }
  26. }