diff --git a/src/app/post/components/post-header/post-header.component.html b/src/app/post/components/post-header/post-header.component.html
index cd783f259da60fb81a9da44a476ac42afc876963..8bf8fcd8a76d4e4c46e5422a541dd1a7c47b77e0 100644
--- a/src/app/post/components/post-header/post-header.component.html
+++ b/src/app/post/components/post-header/post-header.component.html
@@ -8,7 +8,7 @@
     <nav>
       <span
         *ngFor="let tag of tags.others"
-        class="btnTag"
+        class="tag"
         tabindex="0"
         role="listitem"
         [ngClass]="{ active: tag.slug === mainActiveTag.slug || tag.name === mainActiveTag.slug }"
diff --git a/src/app/post/components/post-header/post-header.component.scss b/src/app/post/components/post-header/post-header.component.scss
index 4def009a7624d9c252b7c3a093a8ec2f2c51cd93..74e3b8ada5a24f55d9ddca0a2154ec422cb5baf0 100644
--- a/src/app/post/components/post-header/post-header.component.scss
+++ b/src/app/post/components/post-header/post-header.component.scss
@@ -25,15 +25,16 @@ header {
   nav {
     display: flex;
     overflow-x: auto;
-    .btnTag {
+    white-space: nowrap;
+    .tag {
+      cursor: pointer;
+      user-select: none;
+      @include font-regular-14;
+      box-sizing: border-box;
       padding: 0 16px;
       height: 60px;
-      @include font-regular-14;
       display: flex;
       align-items: center;
-      cursor: pointer;
-      user-select: none;
-      white-space: nowrap;
       border-bottom: 3px solid transparent;
       transition: all 0.3s ease-in-out;
       &.active {
diff --git a/src/app/profile/edit/edit.component.scss b/src/app/profile/edit/edit.component.scss
index 35af539ae5dcb8f70b5b4a9379c184c9902bf773..e7117bd43a4fc41309e288aab35308af79e2679a 100644
--- a/src/app/profile/edit/edit.component.scss
+++ b/src/app/profile/edit/edit.component.scss
@@ -61,17 +61,24 @@
     border-bottom: 1px solid $grey-5;
 
     .tab {
-      padding-bottom: 1rem;
-      justify-content: center;
+      cursor: pointer;
+      user-select: none;
+      @include font-regular-14;
+      box-sizing: border-box;
+      padding: 0 16px;
+      height: 60px;
       display: flex;
+      justify-content: center;
+      align-items: center;
       flex: 1;
-      user-select: none;
+      border-bottom: 3px solid transparent;
+      transition: all 0.3s ease-in-out;
       &:hover {
-        cursor: pointer;
+        border-color: $grey-4;
       }
       &.selected {
         font-weight: bold;
-        border-bottom: 2px solid $grey-1;
+        border-color: $grey-1;
       }
     }
   }
diff --git a/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss b/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss
index 4af3aaa7f07c6785f8c1aac99014613f29405dc1..1fec51d620ca108b664351a142e584b1299aaad3 100644
--- a/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss
+++ b/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss
@@ -65,21 +65,27 @@
     justify-content: flex-start;
     overflow-x: auto;
     white-space: nowrap;
-
     border-bottom: 1px solid $grey-5;
 
     .tab {
-      padding-bottom: 1rem;
-      justify-content: center;
+      cursor: pointer;
+      user-select: none;
+      @include font-regular-14;
+      box-sizing: border-box;
+      padding: 0 16px;
+      height: 60px;
       display: flex;
+      justify-content: center;
+      align-items: center;
       flex: 1;
-      user-select: none;
+      border-bottom: 3px solid transparent;
+      transition: all 0.3s ease-in-out;
       &:hover {
-        cursor: pointer;
+        border-color: $grey-4;
       }
       &.selected {
         font-weight: bold;
-        border-bottom: 2px solid $grey-1;
+        border-color: $grey-1;
       }
     }
   }