Fix styling issues caused by omorphia/tailwind (#1319)

This commit is contained in:
Geometrically
2024-07-24 12:40:36 -07:00
committed by GitHub
parent 5cad3dfbae
commit 41c15f8c96
4 changed files with 11 additions and 1 deletions

View File

@@ -413,6 +413,12 @@ const deleteIcon = async () => {
.visibility-info { .visibility-info {
padding: 0; padding: 0;
list-style: none; list-style: none;
li {
display: flex;
align-items: center;
gap: var(--spacing-card-xs);
}
} }
svg { svg {

View File

@@ -250,6 +250,9 @@ export default defineNuxtComponent({
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.label__title { .label__title {
display: flex;
align-items: center;
gap: var(--spacing-card-xs);
margin-top: var(--spacing-card-bg); margin-top: var(--spacing-card-bg);
svg { svg {

View File

@@ -888,6 +888,7 @@ a,
img { img {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
display: inline-block;
} }
html:not(.dark-mode, .oled-mode) & img[src$='#gh-dark-mode-only'] { html:not(.dark-mode, .oled-mode) & img[src$='#gh-dark-mode-only'] {

View File

@@ -76,7 +76,7 @@ pre {
padding: 1em 1em 1em 1em; padding: 1em 1em 1em 1em;
border-width: 5px; border-width: 5px;
border-radius: 2em; border-radius: 2em;
border-color: var(--color-brand); border-color: var(--color-button-bg);
overflow-x: hidden; overflow-x: hidden;
code { code {