-
+
+ {auth.userInfo.user_object.full_name}
+
-
)}
@@ -44,27 +46,7 @@ const AccountArea = styled.div`
padding-right: 20px;
display: flex;
place-items: center;
-
- a{
- // center the gear icon
- display: flex;
- place-items: center;
- place-content: center;
- width: 29px;
- height: 29px;
- border-radius: 19px;
- background: #F5F5F5;
-
- // hover effect
- &:hover{
- background: #E5E5E5;
-
- }
- }
-
- div {
- margin-right: 10px;
- }
+
img {
width: 29px;
border-radius: 19px;
@@ -82,17 +64,5 @@ const UnidentifiedArea = styled.div`
place-items: stretch;
flex-grow: 1;
- ul {
- display: flex;
- place-items: center;
- list-style: none;
- padding-left: 20px;
-
- li {
- padding-right: 20px;
- font-size: 16px;
- font-weight: 500;
- color: #171717;
- }
- }
+
`;
diff --git a/front/components/StyledElements/Titles/TypeOfContentTitle.tsx b/front/components/StyledElements/Titles/TypeOfContentTitle.tsx
index a06da92b..5030b168 100644
--- a/front/components/StyledElements/Titles/TypeOfContentTitle.tsx
+++ b/front/components/StyledElements/Titles/TypeOfContentTitle.tsx
@@ -8,8 +8,8 @@ function TypeOfContentTitle(props: { title: string, type: string }) {
function getLogo() {
if (props.type == "col") {
return CollectionsLogo;
- }
-
+ }
+
else if (props.type == "cou") {
return CoursesLogo;
}
@@ -21,7 +21,7 @@ function TypeOfContentTitle(props: { title: string, type: string }) {
return (
-
+
{props.title}
diff --git a/front/components/StyledElements/Wrappers/GeneralWrapper.tsx b/front/components/StyledElements/Wrappers/GeneralWrapper.tsx
index 5b42ad8e..9f22d866 100644
--- a/front/components/StyledElements/Wrappers/GeneralWrapper.tsx
+++ b/front/components/StyledElements/Wrappers/GeneralWrapper.tsx
@@ -2,7 +2,7 @@
function GeneralWrapperStyled({ children }: { children: React.ReactNode }) {
return (
{children}
)