Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 18 additions & 16 deletions src/css/console.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
top: 0;
z-index: 1;
padding-top: 1em;
background-color: var(--aside-bar-background);
padding-bottom: 8px;
}

& .console-type {
Expand Down Expand Up @@ -45,7 +47,7 @@
background: rgb(235, 189, 189);
border: 2px solid rgb(204, 0, 0);
color: black;
padding-top: 0.5em
padding-top: 0.5em;
}

& .error::before {
Expand All @@ -55,51 +57,51 @@
}

& .log-log {
color: var(--log-log)
color: var(--log-log);
}

& .log-info {
color: var(--log-info)
color: var(--log-info);
}

& .log-error {
color: var(--log-error)
color: var(--log-error);
}

& .log-warn {
color: var(--log-warn)
color: var(--log-warn);
}

& .log-debug {
color: var(--log-debug, #ab47bc)
color: var(--log-debug, #ab47bc);
}

& .log-table {
color: var(--log-table, #66bb6a)
color: var(--log-table, #66bb6a);
}

& .log-count {
color: var(--log-count, #26c6da)
color: var(--log-count, #26c6da);
}

& .log-trace {
color: var(--log-trace, #8d6e63)
color: var(--log-trace, #8d6e63);
}

& .log-dir {
color: var(--log-dir, #78909c)
color: var(--log-dir, #78909c);
}

& .log-dirxml {
color: var(--log-dirxml, #78909c)
color: var(--log-dirxml, #78909c);
}

& .log-time {
color: var(--log-time, #ffd54f)
color: var(--log-time, #ffd54f);
}

& .log-assert {
color: var(--log-assert, #ff7043)
color: var(--log-assert, #ff7043);
}
}

Expand Down Expand Up @@ -137,17 +139,17 @@
}

.console-fn::before {
content: "ƒ ";
content: 'ƒ ';
font-style: italic;
color: #ce9178;
}

.console-async-fn::before {
content: "async ƒ ";
content: 'async ƒ ';
}

.console-generator-fn::before {
content: "ƒ* ";
content: 'ƒ* ';
}

.console-badge {
Expand Down
14 changes: 9 additions & 5 deletions src/css/history.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
z-index: 1;
padding-top: 1em;
padding-left: 0.5em;
background-color: var(--aside-bar-background);
padding-bottom: 8px;
}

& .history-item {
Expand Down Expand Up @@ -37,7 +39,9 @@
color: #fff;
cursor: pointer;
padding: 6px 8px 6px 6px;
transition: 0.2s ease background-color, 0.2s ease scale;
transition:
0.2s ease background-color,
0.2s ease scale;
border-radius: 4px;

&:hover {
Expand Down Expand Up @@ -129,7 +133,9 @@
gap: 6px;

& button {
transition: 0.2s ease opacity, 0.2s ease scale;
transition:
0.2s ease opacity,
0.2s ease scale;
border: none;
background: none;
color: #fff;
Expand All @@ -149,10 +155,8 @@
width: 18px;
height: 18px;
}

}
}
}

}
}
}
1 change: 1 addition & 0 deletions src/css/skypack.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
top: 0;
z-index: 1;
padding-top: 1em;
background-color: var(--aside-bar-background);
}

& .skypack-type {
Expand Down