Update custom.scss

添加图片居中和高亮美化
This commit is contained in:
wangzipai 2024-10-30 10:05:05 +08:00 committed by GitHub
parent d4f961cc7a
commit aaf846ab11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,17 @@
@use "./base.scss";
// put your custom CSS here!
/* 图片居中 */
img {
display: block;
margin-left: auto;
margin-right: auto;
}
/* 高亮美化 */
.text-highlight {
background-color:#3463ffce;
color: white;
border-radius: 5px;
padding: 2px;
}