FlorianEisenmenger 5 godzin temu
rodzic
commit
e522f7c1c6
4 zmienionych plików z 13 dodań i 4 usunięć
  1. +6
    -3
      gfi-ihk-2024/stories/_global/gfi-styles/_verteiler.scss
  2. +1
    -1
      gfi-ihk-2024/stories/components/anchor-links/AnchorLinksComponent.js
  3. +5
    -0
      gfi-ihk-2024/stories/components/anchor-links/anchor-links.scss
  4. +1
    -0
      gfi-ihk-2024/stories/components/howto-list/howto-list.scss

+ 6
- 3
gfi-ihk-2024/stories/_global/gfi-styles/_verteiler.scss Wyświetl plik

@@ -79,7 +79,8 @@
position: absolute;
display: block;

> a {
> a,
> span {
position: absolute;
display: block;
width: 10px;
@@ -94,7 +95,8 @@
&:hover, &.hover {
z-index: 102;

> a {
> a,
> span {
background-color: $color-secondary-dark;
box-shadow: 0 0 0 6px rgba($color-secondary, 0.3);

@@ -118,7 +120,8 @@
}

&.open {
> a {
> a,
> span {
background-color: $color-secondary-dark;
box-shadow: 0 0 0 6px rgba($color-secondary, 0.3);
}


+ 1
- 1
gfi-ihk-2024/stories/components/anchor-links/AnchorLinksComponent.js Wyświetl plik

@@ -12,7 +12,7 @@ export const createAnchorLinks = ({

titles.map((title, index) => {
const li = createElement('li', [], null, ul);
const a = createElement('a', ['variant-subtle-primary-hover'], title, li);
const a = createElement('a', [], title, li);
a.href = '#titleInText' + index;
a.dataset.index = index.toString();
});


+ 5
- 0
gfi-ihk-2024/stories/components/anchor-links/anchor-links.scss Wyświetl plik

@@ -79,6 +79,11 @@
z-index: 1;
pointer-events: none;
}
&:hover {
&:before {
color: var(--color-text-accent);
}
}
}

a, .anchors-title {


+ 1
- 0
gfi-ihk-2024/stories/components/howto-list/howto-list.scss Wyświetl plik

@@ -20,6 +20,7 @@
margin-top: 0;
font-size: 64px;
line-height: 70px;
// HIER OPTIMIEREN! (ab 599px?)
@media(max-width: 399px) {
font-size: 32px;
line-height: 35px;


Ładowanie…
Anuluj
Zapisz