1
0
mirror of https://github.com/sendevia/website.git synced 2026-03-06 07:40:50 +08:00

fix: improve button and article layout styling

This commit is contained in:
2025-11-09 23:17:37 +08:00
parent 12bed12841
commit 549db33d49
3 changed files with 9 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ const props = withDefaults(defineProps<Props>(), {
position: relative;
text-decoration: none !important;
vertical-align: middle;
border-color: transparent;
border-style: solid;

View File

@@ -602,7 +602,7 @@ section {
display: inline-block;
width: 100%;
width: max-content;
padding-block: 24px;
@@ -680,7 +680,9 @@ section {
}
img {
width: 50%;
width: calc(50% - 6px);
margin-inline: 3px;
border-radius: var(--md-sys-shape-corner-small);
}

View File

@@ -67,5 +67,9 @@ table {
:is(td, th) {
border: 1px solid var(--md-sys-color-outline);
code {
padding-block: 0px !important;
}
}
}