fix: 🚑 issue content images max size + flex-list

pull/5/head
Lucas Colombo 9 months ago
parent 5a4975650a
commit 422f0c1fc7
No known key found for this signature in database
GPG Key ID: EF34786CFEFFAE35

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -383,6 +383,24 @@
--color-light: transparent !important;
}
.flex-list {
.flex-item {
.flex-item-main {
gap: var.get('measure/.25x');
.flex-item-header {
.flex-item-title {
gap: var.get('measure/.5x');
}
}
.flex-item-body:not(:last-child) {
margin-bottom: var.get('measure/1x');
}
}
}
}
@include chroma.make-chroma-styles;
@include codemirror.make-code-mirror-styles;
@include monaco.make-monaco-styles($is-dark: true);

@ -0,0 +1,7 @@
@mixin apply-styles {
.issue-content {
img {
max-width: 100%;
}
}
}

@ -3,6 +3,7 @@
@use './project';
@use './home';
@use './markup';
@use './issue-content';
@mixin apply-custom-styles {
@include repo-header.apply-styles();
@ -10,4 +11,5 @@
@include project.apply-styles();
@include home.apply-styles();
@include markup.apply-styles();
@include issue-content.apply-styles();
}
Loading…
Cancel
Save