mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 12:37:09 +00:00
Update the heading typeface to use IBM Plex Serif, the code typeface to use Lilex (IBM Plex Mono), and pull them from the zed.dev CDN. Also added some stray design adjustments here and there. Release Notes: - N/A
45 lines
892 B
CSS
45 lines
892 B
CSS
kbd.keybinding {
|
|
background-color: var(--keybinding-bg);
|
|
padding: 4px 4px 6px 4px;
|
|
border-radius: 4px;
|
|
font-family: var(--mono-font);
|
|
display: inline-block;
|
|
margin: 0 2px;
|
|
}
|
|
|
|
#copy-markdown-toggle i {
|
|
font-weight: 500 !important;
|
|
-webkit-text-stroke: 0.5px currentColor;
|
|
}
|
|
|
|
.copy-toast {
|
|
position: fixed;
|
|
top: 72px;
|
|
right: 16px;
|
|
padding: 12px 16px;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--fg);
|
|
background: var(--toast-bg);
|
|
border: 1px solid var(--toast-border);
|
|
z-index: 1000;
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
transition: all 0.1s ease-in-out;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
max-width: 280px;
|
|
}
|
|
|
|
.copy-toast.success {
|
|
border-color: var(--toast-border-success);
|
|
}
|
|
|
|
.copy-toast.error {
|
|
border-color: var(--toast-border-error);
|
|
}
|
|
|
|
.copy-toast.show {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|