diff --git a/packages/theme/styles/_layouts.scss b/packages/theme/styles/_layouts.scss index 38d819ffa6..569d6905ea 100644 --- a/packages/theme/styles/_layouts.scss +++ b/packages/theme/styles/_layouts.scss @@ -243,15 +243,18 @@ a.no-line { &:active { color: var(--theme-content-accent-color); } &:visited { color: var(--theme-caption-color); } } +.cursor-pointer { cursor: pointer; } /* Text */ +.small-text { font-size: .75rem; } .fs-title { font-weight: 500; font-size: 1rem; color: var(--theme-caption-color); user-select: none; } -.fs-subtitle { font-size: .75rem; } +.fs-bold { font-weight: 500; } + .over-underline { cursor: pointer; &:hover { text-decoration: underline; } @@ -269,7 +272,6 @@ a.no-line { overflow: hidden; user-select: none; } -.small-text { font-size: .75rem; } .focused-button { background-color: var(--theme-button-bg-focused); diff --git a/packages/ui/src/components/PopupInstance.svelte b/packages/ui/src/components/PopupInstance.svelte index 7d278e9f8b..4af2280159 100644 --- a/packages/ui/src/components/PopupInstance.svelte +++ b/packages/ui/src/components/PopupInstance.svelte @@ -69,6 +69,9 @@ modalHTML.style.top = '4rem' modalHTML.style.bottom = '4rem' modalHTML.style.right = '4rem' + } else if (element === 'account') { + modalHTML.style.bottom = '2.75rem' + modalHTML.style.left = '5rem' } else if (element === 'full') { modalHTML.style.top = '0' modalHTML.style.bottom = '0' diff --git a/packages/ui/src/types.ts b/packages/ui/src/types.ts index 6d1d018f97..1dbdf4a3f1 100644 --- a/packages/ui/src/types.ts +++ b/packages/ui/src/types.ts @@ -54,7 +54,7 @@ export interface Tab { export type TabModel = Tab[] -export type PopupAlignment = HTMLElement | 'right' | 'float' | 'full' +export type PopupAlignment = HTMLElement | 'right' | 'float' | 'account' | 'full' export type TooltipAligment = 'top' | 'bottom' | 'left' | 'right' diff --git a/plugins/recruit-resources/src/components/CreateCandidate.svelte b/plugins/recruit-resources/src/components/CreateCandidate.svelte index ddc95ab086..c46ffa687e 100644 --- a/plugins/recruit-resources/src/components/CreateCandidate.svelte +++ b/plugins/recruit-resources/src/components/CreateCandidate.svelte @@ -142,8 +142,8 @@