refactor(main): move class styles to svelte file

This commit is contained in:
Kim, Jimin 2023-07-02 09:58:14 +09:00
parent b5dcbb60d4
commit 314bcae159
2 changed files with 19 additions and 21 deletions

View file

@ -44,14 +44,6 @@ b {
font-weight: 700; font-weight: 700;
} }
/* main logo image */
.logo {
aspect-ratio: auto 1 / 1;
border-radius: 50%;
margin: 5rem auto;
}
/* table */ /* table */
table { table {
@ -82,16 +74,3 @@ th:nth-child(3),
td:nth-child(3) { td:nth-child(3) {
text-align: left; text-align: left;
} }
/* Socials & Profiles */
.socials-and-profiles {
margin-top: 3rem;
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}
.note {
color: #ffffffcc;
}

View file

@ -121,3 +121,22 @@
<YouTube /> <YouTube />
</a> </a>
</div> </div>
<style>
.logo {
aspect-ratio: auto 1 / 1;
border-radius: 50%;
margin: 5rem auto;
}
.socials-and-profiles {
margin-top: 3rem;
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}
.note {
color: #ffffffcc;
}
</style>