添加 emoji 解析

This commit is contained in:
BTMuli
2023-09-05 10:45:34 +08:00
parent 47823e3f46
commit dd412d2d3c
7 changed files with 189 additions and 7 deletions

View File

@@ -28,7 +28,7 @@
}
:deep(.mys-post-div) {
margin: 20px auto;
margin: 10px auto;
}
:deep(.mys-post-span) {
@@ -52,7 +52,7 @@
}
:deep(.mys-post-divider) {
margin: 20px auto;
margin: 10px auto;
}
:deep(.mys-post-divider) img {
@@ -89,6 +89,7 @@
border: 1px solid var(--common-shadow-1);
border-radius: 10px;
background: var(--box-bg-1);
gap: 10px;
}
:deep(.mys-post-unknown) {
@@ -113,16 +114,24 @@
max-width: 400px;
height: 180px;
border-radius: 10px;
transition: all 0.5s;
}
:deep(.mys-post-link-card-cover):hover img {
transform: scale(1.05);
transition: all 0.5s;
}
:deep(.mys-post-link-card-content) {
display: flex;
width: 100%;
height: 180px;
padding-left: 20px;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
:deep(.mys-post-link-card-title) {
height: 150px;
color: var(--common-text-title);
font-family: var(--font-title);
font-size: 20px;
@@ -137,8 +146,14 @@
:deep(.mys-post-link-card-btn) {
display: inline-block;
margin-right: 20px;
margin-left: auto;
color: #00c3ff;
float: right;
text-align: right;
text-decoration: none;
}
:deep(.mys-post-emoji) {
width: 45px;
height: 45px;
margin: 0 5px;
}