snort/src/Element/ProfileImage.css

37 lines
489 B
CSS
Raw Normal View History

2022-12-27 23:46:13 +00:00
.pfp {
2023-01-25 18:08:53 +00:00
display: flex;
align-items: center;
2022-12-27 23:46:13 +00:00
}
2023-01-16 17:31:17 +00:00
.pfp .avatar-wrapper {
2023-01-16 17:36:48 +00:00
margin-right: 8px;
2023-01-16 17:31:17 +00:00
}
.pfp .avatar {
2023-01-20 15:57:45 +00:00
width: 48px;
height: 48px;
2022-12-29 15:36:40 +00:00
cursor: pointer;
2023-01-06 11:04:25 +00:00
}
.pfp a {
text-decoration: none;
}
.pfp a:hover {
text-decoration: underline;
2023-01-15 12:46:35 +00:00
text-decoration-color: var(--gray-superlight);
}
2023-01-25 18:08:53 +00:00
.pfp .username {
2023-01-15 12:46:35 +00:00
display: flex;
2023-01-25 21:41:01 +00:00
flex-direction: column;
align-items: flex-start;
2023-01-15 12:46:35 +00:00
font-weight: bold;
2023-01-06 11:04:25 +00:00
}
2023-01-15 12:02:45 +00:00
2023-01-25 18:08:53 +00:00
.pfp .profile-name {
display: flex;
flex-direction: column;
2023-01-15 12:02:45 +00:00
}
2023-01-25 18:08:53 +00:00