Skip to content

Commit

Permalink
Merge pull request #781 from tidalcycles/fix-styles
Browse files Browse the repository at this point in the history
fix: style issues
  • Loading branch information
felixroos committed Nov 5, 2023
2 parents ec611aa + 7ad0ec1 commit 83fec57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions website/src/docs/MiniRepl.css
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
.cm-activeLine,
.cm-activeLineGutter {
.mini-repl .cm-activeLine,
.mini-repl .cm-activeLineGutter {
background-color: transparent !important;
}

.cm-theme {
.mini-repl .cm-theme {
background-color: var(--background);
border: 1px solid var(--lineHighlight);
padding: 2px;
}

.cm-scroller {
.mini-repl .cm-scroller {
font-family: inherit !important;
}

.cm-gutters {
.mini-repl .cm-gutters {
display: none !important;
}

.cm-cursorLayer {
.mini-repl .cm-cursorLayer {
animation-name: inherit !important;
}

.cm-cursor {
.mini-repl .cm-cursor {
border-left: 2px solid currentcolor !important;
}
2 changes: 1 addition & 1 deletion website/src/docs/MiniRepl.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function MiniRepl({
.catch((err) => console.error(err));
}, []);
return Repl ? (
<div className="mb-4">
<div className="mb-4 mini-repl">
<Repl
tune={tune}
hideOutsideView={true}
Expand Down

0 comments on commit 83fec57

Please sign in to comment.