diff --git a/src/components/app/Popouts/Popouts/SettingsPanels/EditProfile.vue b/src/components/app/Popouts/Popouts/SettingsPanels/EditProfile.vue
index f810c95..3491aab 100644
--- a/src/components/app/Popouts/Popouts/SettingsPanels/EditProfile.vue
+++ b/src/components/app/Popouts/Popouts/SettingsPanels/EditProfile.vue
@@ -15,15 +15,17 @@
@@ -63,13 +65,23 @@ export default {
.edit-profile{
display: flex;
margin-top: 10px;
+ width: 100%;
}
.change-avatar {
display: flex;
flex-direction: column;
flex: 1
-
+}
+.change-avatar-container {
+ display: flex;
+ flex-direction: column;
+ background: rgb(42, 42, 42);
+ width: 150px;
+ align-self: center;
+ padding: 20px;
+ border-radius: 10px;
+ margin-top: 10px;
}
.avatar {
margin-bottom: 10px;
@@ -78,7 +90,7 @@ export default {
.button {
background: rgb(0, 119, 255);
- padding: 5px;
+ padding: 10px;
text-align: center;
border-radius: 5px;
display: inline-block;
@@ -87,27 +99,34 @@ export default {
}
.left {
- background: rgba(255, 0, 0, 0.096);
width: 300px;
+ display: flex;
+ flex-direction: column;
}
.outer-input {
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
background: rgb(42, 42, 42);
padding: 10px;
border-radius: 10px;
margin: 10px;
}
.outer-input .user-tag .username{
- flex: 1;
+
}
.outer-input .user-tag .tag{
- border-left: solid 1px white;
+ border-left: solid 1px rgb(168, 168, 168);
width: 50px;
}
.outer-input .user-tag {
display: flex;
overflow: hidden;
}
-
+.outer-input input {
+ width: initial;
+ border-radius: 5px
+}
\ No newline at end of file
diff --git a/src/components/app/Popouts/Popouts/SettingsPanels/MyProfile.vue b/src/components/app/Popouts/Popouts/SettingsPanels/MyProfile.vue
index 0bd1843..ccea39d 100644
--- a/src/components/app/Popouts/Popouts/SettingsPanels/MyProfile.vue
+++ b/src/components/app/Popouts/Popouts/SettingsPanels/MyProfile.vue
@@ -135,16 +135,30 @@ export default {
padding: 10px;
margin: 3px;
margin-bottom: 0;
- border-bottom: solid 5px rgba(255, 255, 255, 0);
- transition: 0.3s;
user-select: none;
cursor: pointer;
+ position: relative;
+ padding-bottom: 15px;
}
-.tabs .tab:hover {
- border-bottom: solid 5px rgba(255, 255, 255, 0.507);
+
+.tabs .tab:after {
+ content:'';
+ position:absolute;
+ bottom:0;
+ left:0;
+ right:0;
+ background:rgba(255, 255, 255, 0);
+ height:5px;
+ border-radius:10px;
+ transition: 0.3s;
}
-.tabs .tab.selected {
- border-bottom: solid 5px white;
+
+
+.tabs .tab:hover:after{
+ background: rgb(160, 160, 160);
+}
+.tabs .tab.selected:after {
+ background: white;
}
.content{