diff --git a/client/src/scss/pages/aluno/_profile.scss b/client/src/scss/pages/aluno/_profile.scss index e76dce2..94671b0 100644 --- a/client/src/scss/pages/aluno/_profile.scss +++ b/client/src/scss/pages/aluno/_profile.scss @@ -13,7 +13,7 @@ main { .capaProfile { height: 66.66%; border-radius: 16px; - background-color: rgb(0, 50, 158); + background-color: $secondary-color-dark; img { height: 100%; @@ -33,7 +33,7 @@ main { width: 250px; object-fit: cover; border-radius: 50%; - background-color: rgb(255, 68, 130); + background-color: $terciary-color-dark; } .info { @@ -71,7 +71,7 @@ main { margin: 20px 0px 10px 0px; } - div { + > div { position: relative; width: 100%; background-color: $secondary-color-dark; @@ -84,6 +84,7 @@ main { @include font-inter(300); font-size: 1rem; color: $font-color-dark-2; + min-height: 300px; } textarea { @@ -92,26 +93,42 @@ main { outline: none; min-width: 100%; height: auto; - min-height: 300px; resize: none; } - .edit { + > .editButtons { @include flex-center; position: absolute; + z-index: 2; bottom: 10px; right: 10px; - background-color: transparent; - border: none; - height: 30px; - width: 30px; - border-radius: 50%; - img { - height: 60%; - width: 60%; - object-fit: cover; - filter: invert(100%) + button { + @include flex-center; + margin-inline-end: 10px; + background-color: transparent; + border: none; + border-radius: 5px; + padding: 4px 6px; + color: $font-color-dark; + @include font-inter(700); + box-shadow: 0px 0px 2px $font-color-dark-2; + + > * { + margin-inline-end: 3px; + } + + img { + height: 18px; + width: 18px; + object-fit: cover; + filter: invert(100%); + } + + &:hover { + background-color: $primary-color-dark; + box-shadow: 0px 0px 4px $font-color-dark-2; + } } } } diff --git a/client/src/socket.js b/client/src/socket.js index 7d940b7..f3e7c2b 100644 --- a/client/src/socket.js +++ b/client/src/socket.js @@ -1,8 +1,8 @@ import { io } from "socket.io-client"; import { reactive } from 'vue'; -// export const server_url = "http://localhost:3333"; -export const server_url = "https://2e5dc0ad80a147891a8a800bb5797bb6.serveo.net/"; +export const server_url = "http://localhost:3333"; +// export const server_url = "https://2e5dc0ad80a147891a8a800bb5797bb6.serveo.net/"; export const socket = io(server_url); export const state = reactive({ diff --git a/client/src/views/aluno/Profile.vue b/client/src/views/aluno/Profile.vue index 63ba14d..c9e5def 100644 --- a/client/src/views/aluno/Profile.vue +++ b/client/src/views/aluno/Profile.vue @@ -23,15 +23,19 @@

Sobre mim

- - - - - - + +
+ + + +
@@ -42,12 +46,11 @@