mirror of https://github.com/lxndrblz/anatole.git

Andreas Deininger
07.57.2025 acb0c1788976af1601ac300b9206e1c898a29d5b
assets/scss/partials/_hugo.scss
@@ -1,13 +1,16 @@
@use 'modules/color_theme' as color;
@use 'modules/config' as conf;
a {
  text-decoration: none;
  @include themed() {
    color: t('primary');
  @include color.themed() {
    color: color.t('primary');
  }
  &:hover {
    @include themed() {
      color: t('info');
    @include color.themed() {
      color: color.t('info');
    }
  }
}
@@ -15,15 +18,15 @@
blockquote {
  padding: 0 1em;
  @include themed() {
    color: t('primary');
  @include color.themed() {
    color: color.t('primary');
    @include ltr {
      border-left: t('border');
    @include conf.ltr {
      border-left: color.t('border');
    }
    @include rtl {
      border-right: t('border');
    @include conf.rtl {
      border-right: color.t('border');
    }
  }
}