Skip to content

Commit

Permalink
wip border issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchox5 committed Oct 13, 2023
1 parent f60181b commit 9f710ba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/components/_orbit-style.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

.o-orbit {
border: 0.1px solid var(--o-dark);
border: 0px solid var(--o-dark);
}
14 changes: 0 additions & 14 deletions src/components/_orbit.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
--o-offset-angle: var(--o-a0); // ensure reset to default. useful for nested
display: grid;
border-radius: 50%;
border: 0.1px solid var(--o-dark);
grid-area: 1/1/1/1;
place-items: center;
box-sizing: content-box;
Expand All @@ -13,21 +12,8 @@
z-index: var(--o-z-index);
}

.o-orb {
--o-arc: var(--o-a360); // ensure reset to default. useful for nested
--o-offset-angle: var(--o-a0); // ensure reset to default. useful for nested
border-radius: 50%;
border: 0.1px solid var(--o-dark);
grid-area: 1/1/1/1;
place-items: center;
box-sizing: content-box;

z-index: 800;
}

.o-orbit {
border: 0.1px solid var(--o-dark);
}


// add suborbit
1 change: 1 addition & 0 deletions src/components/_orbiter-style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.o-orbiter {
background-color: var(--o-light);
border-color: var(--o-dark);
border: 0px solid;
}

.o-orbiter > .o-content {
Expand Down
2 changes: 1 addition & 1 deletion src/components/_orbiter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
--o-rotate: calc(var(--o-rotation-angle) * 1deg);
--o-rotate-invert: calc(var(--o-rotation-angle) * -1deg);
display: grid;
border: 1px solid;

grid-area: 1/1/1/1;
place-content: center;
width: var(--o-size);
Expand Down
3 changes: 2 additions & 1 deletion src/layouts/_radial-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
}

--o-z-index: #{$z-index};
border: none !important;

}
}
Expand Down Expand Up @@ -127,7 +128,7 @@
--o-diameter: calc(var(--o-size) * #{$i});
--o-z-index: #{$z-index};
--o-x-coords: calc(var(--o-radius-#{$i}));
border: none;
border: none !important;
}

.o-orbiter > .o-orbit:nth-child(#{$i}) > .o-orbit > .o-sector {
Expand Down

0 comments on commit 9f710ba

Please sign in to comment.