_keyboard-shortcuts.scss 747 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .w-keyboard-shortcuts {
  2. kbd {
  3. word-spacing: 0.125em;
  4. white-space: nowrap;
  5. font-size: theme('fontSize.15');
  6. color: theme('colors.grey.600');
  7. background-color: theme('colors.grey.50');
  8. }
  9. }
  10. .w-keyboard-shortcuts__category {
  11. th {
  12. text-align: start;
  13. margin-top: theme('spacing.5');
  14. margin-bottom: theme('spacing.3');
  15. display: block;
  16. }
  17. }
  18. .w-keyboard_shortcuts__key {
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. width: 100%;
  23. border-top: 1px solid theme('colors.grey.100');
  24. th {
  25. font-size: theme('fontSize.14');
  26. font-weight: theme('fontWeight.normal');
  27. padding: theme('spacing.2') 0;
  28. text-align: start;
  29. }
  30. td {
  31. padding: theme('spacing.2') 0;
  32. }
  33. }