remove profile border on smaller screens

This commit is contained in:
ngn 2024-04-10 16:11:38 +03:00
parent bac2a3f2a0
commit b2b4bc0a98

View File

@ -125,7 +125,6 @@ main{
box-shadow: rgba(50, 50, 93, 1) 0px 30px 60px -12px inset, rgba(0, 0, 0, 1) 0px 18px 36px -18px inset;
}
ul {
list-style: inside;
}
@ -160,6 +159,12 @@ a:hover {
@media only screen and (max-width: 900px) {
.whoami-box {
flex-direction: column;
gap: 25px;
}
.whoami-pic {
border-right: none;
padding: 0;
}
}
</style>