| 1234567891011121314151617181920 |
- @use '~/styles/variables' as var;
- @use '~/styles/bootstrap/init' as bs;
- @use '~/styles/atoms/mixins' as atm;
- .code-inline {
- @include atm.code-inline;
- }
- .code-highlighted-title {
- position: absolute;
- top: 0;
- right: 0.5em;
- padding: 0 4px;
- font-style: normal;
- font-weight: bold;
- color: bs.$gray-900;
- background: bs.$gray-300;
- border-radius: bs.$border-radius;
- opacity: 0.6;
- }
|