Skip to content

Commit

Permalink
Merge pull request #302 from prathamesh424/main
Browse files Browse the repository at this point in the history
Fixed 🐛 Bug Report :  Profile Settings UI errors [fixed : #301]
  • Loading branch information
jamesread authored Oct 4, 2024
2 parents 7f72ccf + c081584 commit aaefbbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion apps/frontend/src/app/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ html {

.uppy-ProgressBar-percentage {
position: absolute;
color: red;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Expand All @@ -383,4 +384,4 @@ div div .set-font-family {
font-stretch: 100% !important;
font-style: normal !important;
font-weight: 400 !important;
}
}
6 changes: 3 additions & 3 deletions apps/frontend/src/components/layout/settings.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const SettingsPopup: FC<{ getRef?: Ref<any> }> = (props) => {
</div>
</button>
<button
className="h-[24px] w-[88px] rounded-[4px] border-2 border-customColor21 flex justify-center items-center gap-[4px]"
className="h-[24px] w-[88px] rounded-[4px] border-2 border-customColor21 hover:text-red-600 flex justify-center items-center gap-[4px]"
type="button"
>
<div>
Expand All @@ -177,7 +177,7 @@ export const SettingsPopup: FC<{ getRef?: Ref<any> }> = (props) => {
/>
</svg>
</div>
<div className="text-[12px]" onClick={remove}>
<div className="text-[12px] " onClick={remove}>
Remove
</div>
</button>
Expand All @@ -191,7 +191,7 @@ export const SettingsPopup: FC<{ getRef?: Ref<any> }> = (props) => {
</div>
{!getRef && (
<div className="justify-end flex">
<Button type="submit">Save</Button>
<Button type="submit" className='rounded-md'>Save</Button>
</div>
)}
{!!user?.tier?.team_members && isGeneral && <TeamsComponent />}
Expand Down

0 comments on commit aaefbbc

Please sign in to comment.