Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jobs page #153

Merged
merged 2 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/public/icons/arrow-down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion site/public/icons/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@import 'src/styles/helpers';
@import 'src/styles/colors';
@import 'src/styles/mixins';
@import 'src/styles/paddings';

.container {
background-color: $gray900;
Expand All @@ -12,7 +13,7 @@
padding-bottom: size(264);

@include mobile {
padding-bottom: size(60);
padding-bottom: size(80);
}
}

Expand All @@ -25,10 +26,6 @@

.bottomLine {
composes: line;

@include mobile {
display: none;
}
}

.wrapper {
Expand All @@ -44,7 +41,7 @@
background-color: $gray900;

@include mobile {
padding: size(2) size(10) size(40);
padding: 0 size(10) size($spacing32 + 14);
margin-top: size(-22);
}
}
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/pages/OpenPositions/OpenPositions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const OpenPositions = () => {
const { isMobile } = useViewport()
return (
<>
<Container className={s.root}>
<Container className={s.root} id="footer_nav">
{isMobile && (
<Button className={s.btn} href="/careers">
<Icon name="arrow-up" className={s.arrow} />
Expand Down
16 changes: 10 additions & 6 deletions site/src/styles/freshteamWidget.scss
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,12 @@
padding: size(5.5) size(16) size(5.5) size(38) !important;
border-radius: 0 !important;
border: none !important;
background: $gray-50 !important;
background: $gray-800 !important;
font-family: HelveticaNeue !important;
font-size: size(15) !important;
line-height: size(15) !important;
letter-spacing: size(-0.54) !important;
color: $gray900 !important;
color: $gray-200 !important;

@include mobile {
margin-top: 0 !important;
Expand Down Expand Up @@ -471,12 +471,12 @@
top: 0 !important;
right: size(16) !important;
border: none !important;
width: 12px !important;
width: size(16) !important;
height: 100% !important;
background: url(/icons/arrow-down.svg) no-repeat !important;
background-size: contain !important;
background-position: center !important;
transform: rotate(270deg) !important ;
// transform: rotate(270deg) !important ;

@include mobile {
width: 12px !important;
Expand All @@ -503,7 +503,7 @@
top: 0 !important;
right: size(16) !important;
border: none !important;
width: size(12) !important;
width: size(16) !important;
height: 100% !important;
background: url(/icons/arrow-down.svg) no-repeat !important;
background-size: contain !important;
Expand Down Expand Up @@ -665,6 +665,10 @@
height: min-content !important;
padding: size(4) size(16) !important;
font-size: size(15) !important;

.icon-tick {
width: size(16);
}
}
}
}
Expand Down Expand Up @@ -715,7 +719,7 @@
justify-content: space-between !important;
height: 100% !important;
padding: size(5.5) size(32) size(5.5) size(16) !important;
background-color: $gray-50 !important;
background-color: $gray-800 !important;
}

.remote-toggle-mobile {
Expand Down