Friend List Styling

This commit is contained in:
2024-12-07 02:56:16 +00:00
parent 49cfbff578
commit e53e19cc3e
4 changed files with 69 additions and 7 deletions

60
style/friend.scss Normal file
View File

@ -0,0 +1,60 @@
@import 'theme.scss';
.friend-page-container {
width: 100%;
}
.friend-container {
width: 100%;
border-collapse: collapse;
.friend-row {
border: solid;
border-width: 1px 0;
border-color: #303030;
position: relative;
min-width: 100%;
height: 50px;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
.friend-info {
display: flex;
flex-flow: row nowrap;
}
.friend-item {
max-width: max-content;
margin: 0 20px;
.friend-image {
width: 35px;
height: 35px;
border-radius: 50%;
}
}
.friend-created-date {
margin-right: 50px;
}
a {
color: $text-controls-color;
}
a:visited {
color: $text-controls-color;
}
a:hover {
color: $controls-hover-color;
}
a:active {
color: $controls-click-color;
}
}
}

View File

@ -16,6 +16,7 @@
@import 'profile.scss';
@import 'loading.scss';
@import 'album_page.scss';
@import 'friend.scss';
body {
font-family: sans-serif;