CodeBlock.module.scss 396 B

1234567891011121314151617181920
  1. @use '~/styles/variables' as var;
  2. @use '~/styles/bootstrap/init' as bs;
  3. @use '~/styles/atoms/mixins' as atm;
  4. .code-inline {
  5. @include atm.code-inline;
  6. }
  7. .code-highlighted-title {
  8. position: absolute;
  9. top: 0;
  10. right: 0.5em;
  11. padding: 0 4px;
  12. font-style: normal;
  13. font-weight: bold;
  14. color: bs.$gray-900;
  15. background: bs.$gray-300;
  16. border-radius: bs.$border-radius;
  17. opacity: 0.6;
  18. }