2025-01-24 18:54:45 +00:00
|
|
|
@footer-height: 433px;
|
2020-12-02 20:48:03 +00:00
|
|
|
@container-md-max-width: 1100px;
|
|
|
|
|
|
|
|
|
|
[v-cloak] { display: none; }
|
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
|
2023-07-12 00:54:05 +00:00
|
|
|
|
2020-12-02 20:48:03 +00:00
|
|
|
[purpose='page-wrap'] {
|
|
|
|
|
height: 100%;
|
2021-03-23 09:36:35 +00:00
|
|
|
height: auto !important;//lesshint-disable-line importantRule,duplicateProperty
|
2020-12-02 20:48:03 +00:00
|
|
|
min-height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding-bottom: @footer-height;
|
2025-02-04 04:50:54 +00:00
|
|
|
background: linear-gradient(180deg, #E8F1F6 0%, #FFFFFF 100px);
|
2023-05-30 23:43:53 +00:00
|
|
|
background-position: center 40px;
|
2024-11-21 21:09:04 +00:00
|
|
|
opacity: 1;
|
|
|
|
|
// Note: This element has the "show" class toggled by the mobile header nav menu button.
|
|
|
|
|
// We are overriding bootstrap classes here to allow us to prevent the page being scrolled while the mobile menu is open.
|
|
|
|
|
&.collapse {
|
|
|
|
|
display: block;
|
|
|
|
|
[purpose='mobile-nav'] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.collapsing {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: 0s;
|
|
|
|
|
}
|
|
|
|
|
&.collapse.show {
|
|
|
|
|
max-height: 100vh;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
[purpose='mobile-nav'] {
|
|
|
|
|
display: block;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
2022-08-10 03:23:14 +00:00
|
|
|
|
2023-10-05 21:20:08 +00:00
|
|
|
[purpose='header-background'] {
|
2024-03-06 07:28:11 +00:00
|
|
|
background: rgba(255, 255, 255, 0.95);
|
2023-10-05 21:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Styles for the page header
|
|
|
|
|
[purpose='header-container'] {
|
|
|
|
|
box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08);
|
|
|
|
|
border-bottom: 1px solid #FFFFFF;
|
|
|
|
|
// rules for sticky nav transitions
|
2023-02-11 00:33:12 +00:00
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2023-07-12 00:54:05 +00:00
|
|
|
z-index: 199;
|
2023-02-11 00:33:12 +00:00
|
|
|
position: sticky;
|
2023-03-16 16:43:09 +00:00
|
|
|
position: -webkit-sticky; //lesshint-disable-line duplicateProperty
|
2023-02-11 00:33:12 +00:00
|
|
|
top: 0;
|
2023-12-02 00:19:20 +00:00
|
|
|
transition-property: transform, bottom;
|
|
|
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
transition-duration: 500ms;
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2025-06-19 21:09:26 +00:00
|
|
|
[purpose='announcement-banner'] {
|
|
|
|
|
br {
|
|
|
|
|
display: none;
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12px 8px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: #0587FF;
|
2025-09-05 03:24:04 +00:00
|
|
|
color: #FFF;
|
2025-06-19 21:09:26 +00:00
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
[parasails-component='animated-arrow-button'] {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
[purpose='continue-banner'] {
|
2024-11-21 21:09:04 +00:00
|
|
|
z-index: 198;
|
2024-05-31 23:44:13 +00:00
|
|
|
position: fixed;
|
|
|
|
|
bottom: 24px;
|
|
|
|
|
left: 24px;
|
|
|
|
|
[purpose='banner-body'].invisible {
|
|
|
|
|
transform: translateY(200px);
|
|
|
|
|
}
|
|
|
|
|
[purpose='banner-body'] {
|
|
|
|
|
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
|
|
|
[purpose='banner-close-button'] {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
width: 260px;
|
|
|
|
|
position: relative;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
border: 1px solid #E2E4EA;
|
|
|
|
|
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
|
|
|
|
|
padding: 8px;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
[purpose='banner-text'] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 0 0 16px;
|
|
|
|
|
strong {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
color: #192147;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
line-height: 18px; /* 150% */
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
[purpose='form-progress-bar'] {
|
|
|
|
|
height: 6px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #E2E4EA;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
[purpose='current-progress'] {
|
|
|
|
|
background-color: #3DB67B;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='continue-button'] {
|
2024-06-28 21:55:25 +00:00
|
|
|
width: fit-content;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 6px 0px;
|
|
|
|
|
text-decoration: none;
|
2024-05-31 23:44:13 +00:00
|
|
|
font-size: 12px;
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
font-weight: 600;
|
2024-06-28 21:55:25 +00:00
|
|
|
[purpose='button-text'] {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
}
|
|
|
|
|
[purpose='animated-arrow'] {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
stroke-width: 2px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
width: 8px;
|
|
|
|
|
fill: none;
|
|
|
|
|
stroke: #FF5C83;
|
2024-05-31 23:44:13 +00:00
|
|
|
}
|
2024-06-28 21:55:25 +00:00
|
|
|
[purpose='arrow-line'] {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 10ms ease-out;
|
2024-05-31 23:44:13 +00:00
|
|
|
}
|
2024-06-28 21:55:25 +00:00
|
|
|
[purpose='chevron'] {
|
|
|
|
|
transition: transform 100ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
[purpose='button-text'] {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
}
|
|
|
|
|
[purpose='arrow-line'] {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 150ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
[purpose='chevron'] {
|
|
|
|
|
transform: translateX(5px);
|
|
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='continue-chevron'] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-07-03 20:57:35 +00:00
|
|
|
[purpose='banner-image-background'] {
|
|
|
|
|
background-color: #EEF9FE;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
[purpose='banner-image'] {
|
|
|
|
|
height: 80px;
|
|
|
|
|
min-width: 80px;
|
|
|
|
|
background-size: cover;
|
2024-08-21 17:54:06 +00:00
|
|
|
background-position: center;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
&.stage-one {
|
|
|
|
|
background-image: url('/images/psystage-1-unaware-558x680@2x.png');
|
|
|
|
|
}
|
|
|
|
|
&.stage-two {
|
|
|
|
|
background-image: url('/images/cta-thumbnail-psystage-2-aware-128x128@2x.png');
|
|
|
|
|
}
|
|
|
|
|
&.stage-three {
|
|
|
|
|
background-image: url('/images/cta-thumbnail-psystage-3-intrigued-128x128@2x.png');
|
|
|
|
|
}
|
|
|
|
|
&.stage-four {
|
|
|
|
|
background-image: url('/images/cta-thumbnail-psystage-4-has-use-case-128x128@2x.png');
|
|
|
|
|
}
|
|
|
|
|
&.stage-five {
|
2024-10-07 16:04:32 +00:00
|
|
|
background-image: url('/images/cta-thumbnail-psystage-5-feeling-confident-128x128@2x.png');
|
2024-08-21 17:54:06 +00:00
|
|
|
}
|
|
|
|
|
&.stage-six {
|
|
|
|
|
background-image: url('/images/psystage-6-has-team-buy-in-504x784@2x.png');
|
|
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='banner-body'].collapsed {
|
|
|
|
|
[purpose='banner-image'] {
|
|
|
|
|
height: 100px;
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='banner-text'] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: scale(0.9);
|
|
|
|
|
}
|
|
|
|
|
transform: scale(0.8);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
min-height: unset;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 4px solid #FFF;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: #EEF9FE;
|
|
|
|
|
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
&.invisible {
|
|
|
|
|
transform: translateY(200px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-12-12 20:19:11 +00:00
|
|
|
[purpose='header-ribbon-cta'] {
|
2025-03-04 01:14:55 +00:00
|
|
|
background-color: #0587FF;
|
|
|
|
|
padding: 12px 8px;
|
|
|
|
|
img {
|
|
|
|
|
height: 20px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
2022-08-10 03:23:14 +00:00
|
|
|
p {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 20px;
|
2022-12-12 20:19:11 +00:00
|
|
|
color: #fff;
|
2025-03-04 01:14:55 +00:00
|
|
|
margin-bottom: 0px;
|
2022-08-10 03:23:14 +00:00
|
|
|
}
|
|
|
|
|
a {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 20px;
|
2023-04-27 17:07:05 +00:00
|
|
|
font-weight: 700;
|
|
|
|
|
text-decoration: underline;
|
2023-05-15 16:29:25 +00:00
|
|
|
color: #fff;
|
2025-03-04 01:14:55 +00:00
|
|
|
&:hover {
|
|
|
|
|
color: #FFF;
|
|
|
|
|
text-decoration-color: #FFF;
|
|
|
|
|
}
|
2022-08-10 03:23:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
2020-12-02 20:48:03 +00:00
|
|
|
|
2022-03-01 19:47:36 +00:00
|
|
|
[purpose='page-header'] {
|
2023-02-11 00:33:12 +00:00
|
|
|
max-width: 1200px;
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 0px 32px;
|
2023-02-11 00:33:12 +00:00
|
|
|
height: 80px;
|
2024-03-21 02:08:01 +00:00
|
|
|
color: @core-fleet-black;
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='header-logo'] {
|
|
|
|
|
max-width: 118px;
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 19px 0px 19px 0px;
|
2023-02-11 00:33:12 +00:00
|
|
|
img {
|
|
|
|
|
height: 41px;
|
|
|
|
|
width: 118px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[purpose='glass-header-btn'] {
|
|
|
|
|
color: #FFFFFF;
|
2025-09-03 23:59:56 +00:00
|
|
|
height: 36px;
|
2023-02-11 00:33:12 +00:00
|
|
|
position: relative;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 700;
|
2024-04-08 15:20:15 +00:00
|
|
|
line-height: 1;
|
2025-09-03 23:59:56 +00:00
|
|
|
padding: 16px 12px;
|
|
|
|
|
border-radius: 8px;
|
2023-02-11 00:33:12 +00:00
|
|
|
background-color: @core-vibrant-red;
|
2025-09-03 23:59:56 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
white-space: nowrap;
|
2025-09-12 17:39:52 +00:00
|
|
|
overflow: hidden;
|
2025-02-25 17:08:23 +00:00
|
|
|
&:hover {
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
Implement sticky nav for fleetdm.com (#5298)
* feat: implement sticky nav for fleetdm except the homepage
* feat: add sticky nav to homepage
* Add note for v 4.13 to fleetctl docs (#5274)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* License dispenser query strings (#5321)
Co-authored-by: Tim Kern <tim@fleetdm.com>
* chore(test): rewritten query side panel test using rtl (#5189)
* Update get started (fleetctl preview) instructions on website (#5312)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* update customer layout (#5329)
* Handbook: Rename Slack channel, suggest DRI for #help-golang (#5157)
* Handbook: Rename Slack channel, suggest DRI for #help-golang
* Deleted #help-golang and #help-frontend
This is based on the call Zach and I had today about eliminating the extra "Help" channels, now that there are development groups where more focused conversation can happen without blasting every engineer in the company.
FYI I checked and #help-frontend is actively used, whereas #help-golang is much less active.
* Editor pass - Added and renamed the Rituals section (#5300)
Editor pass for: https://github.com/fleetdm/fleet/pull/5183
I added and renamed the Rituals section with a link for consistency.
This PR is related to: https://github.com/fleetdm/fleet/pull/5299
* Unified text for private IP address (#5301)
* unified text for private ip address
* updated capitalization
* Added utm_source tracking to calendly link (#5281)
Will allow us to track schedule demo submissions from pricing page by adding utm_source
* Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components
* component clean up
* removed redux from routes
* rename file
* moved useDeepEffect hook with others
* removed redux, fleet, app_constants dirs; added types to utilities
* style cleanup
* typo fix
* removed unused ts-ignore comments
* removed redux packages!!!
* formatting
* fixed typing for simple search function
* updated frontend readme
* Website add articles page. (#5243)
* create '/articles' and add 4 test articles
* update build-static-content script for '/articles'
* article pages
* Validate article page metaData
* add articles linked from header, remove test articles
* update article styles
* comment out /articles route, update blog post links
* Move article category page to different branch for future PR
* Update build-static-content.js
* remove pagescript
* Update deploying-fleet-on-render.md
* update meta tags
* lint fixes
* Style & Markdown updates
Made a couple of fixes to the styling and markdown.
* update view action, replace route with regex, update links
* authorsGitHubUserName -> authorGitHubUsername, authorsFullName -> authorFullName
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
* Add slack notif when integration test fails (#5332)
* Editor pass - Registering in a new state w/ Gusto (#5305)
Editor pass for: https://github.com/fleetdm/fleet/pull/5237
* Editor pass - Creating a consulting agreement (#5304)
* Editor pass - Creating a consulting agreement
Editor pass for: https://github.com/fleetdm/fleet/pull/5273/files
* Update people.md
Co-authored-by: Eric <eashaw@sailsjs.com>
* Fix handbook index (#5341)
* fix: review request changes
* fix: revert to using window.innerHeigh for logic to hide the header
* Update layout.ejs
I don't know if this is good syntax, but I want the masthead to stay in position for a little longer.
* feat: format if logic
* fix: rename handler function to windowScrolled
Co-authored-by: Katheryn Satterlee <me@ksatter.com>
Co-authored-by: Eric <eashaw@sailsjs.com>
Co-authored-by: Tim Kern <tim@fleetdm.com>
Co-authored-by: Tharun Rajendran <rajendrantharun@live.com>
Co-authored-by: Zach Wasserman <zach@fleetdm.com>
Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
Co-authored-by: Desmi-Dizney <99777687+Desmi-Dizney@users.noreply.github.com>
Co-authored-by: Martavis Parker <47053705+martavis@users.noreply.github.com>
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
2022-04-25 12:02:15 +00:00
|
|
|
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='glass-header-btn']::before {
|
|
|
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
content: ' ';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: -5px;
|
|
|
|
|
width: 60%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
transform: skew(-10deg);
|
|
|
|
|
transition: left 0.5s ease-in, opacity 0.50s ease-in, width 0.5s ease-in;
|
|
|
|
|
}
|
|
|
|
|
[purpose='glass-header-btn']:hover:before {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
left: 160px;
|
|
|
|
|
width: 110%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-03 23:59:56 +00:00
|
|
|
[purpose='layout-animated-arrow-button'] {
|
|
|
|
|
width: fit-content;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 6px 0px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
line-height: 24px; /* 160% */
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
[purpose='button-text'] {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
}
|
|
|
|
|
[purpose='animated-arrow'] {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
stroke-width: 2px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
fill: none;
|
|
|
|
|
stroke: #FF5C83;
|
|
|
|
|
}
|
|
|
|
|
[purpose='arrow-line'] {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 10ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
[purpose='chevron'] {
|
|
|
|
|
transition: transform 100ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
[purpose='button-text'] {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
}
|
|
|
|
|
[purpose='arrow-line'] {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 150ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
[purpose='chevron'] {
|
|
|
|
|
transform: translateX(5px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='mobile-nav-toggle-btn'] {
|
|
|
|
|
color: #192147;
|
2024-03-21 02:08:01 +00:00
|
|
|
cursor: pointer;
|
2023-02-11 00:33:12 +00:00
|
|
|
font-size: 16px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-family: @navigation-font;
|
|
|
|
|
font-weight: @bold;
|
2023-03-16 16:43:09 +00:00
|
|
|
height: 100%;
|
2024-03-21 02:08:01 +00:00
|
|
|
padding-left: 24px;
|
|
|
|
|
user-select: none;
|
2023-02-11 00:33:12 +00:00
|
|
|
img {
|
2024-03-21 02:08:01 +00:00
|
|
|
margin-left: 8px;
|
2023-02-11 00:33:12 +00:00
|
|
|
width: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
|
2022-03-01 19:47:36 +00:00
|
|
|
[purpose='mobile-nav'] {
|
2021-03-31 23:08:36 +00:00
|
|
|
position: fixed;
|
2025-02-13 20:07:57 +00:00
|
|
|
max-height: 100vh;
|
|
|
|
|
overflow: scroll;
|
2021-03-31 23:08:36 +00:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2024-11-21 21:09:04 +00:00
|
|
|
z-index: 200;
|
2021-03-31 23:08:36 +00:00
|
|
|
background-color: #ffffff;
|
2022-03-01 19:47:36 +00:00
|
|
|
hr {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='mobile-nav-header'] {
|
2024-11-21 21:09:04 +00:00
|
|
|
padding: 19px 32px;
|
2024-03-21 02:08:01 +00:00
|
|
|
height: 80px;
|
|
|
|
|
}
|
2025-09-03 23:59:56 +00:00
|
|
|
[purpose='mobile-dropdown-menus'] {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='mobile-nav-container'] {
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 0px;
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
|
|
|
|
[purpose='mobile-header-logo'] {
|
|
|
|
|
img {
|
|
|
|
|
height: 41px;
|
|
|
|
|
width: 118px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='mobile-nav-close-btn'] {
|
|
|
|
|
font-size: 16px;
|
2024-03-21 02:08:01 +00:00
|
|
|
padding-left: 24px;
|
|
|
|
|
cursor: pointer;
|
2023-02-11 00:33:12 +00:00
|
|
|
text-decoration: none;
|
2024-03-21 02:08:01 +00:00
|
|
|
user-select: none;
|
2023-02-11 00:33:12 +00:00
|
|
|
img {
|
|
|
|
|
width: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-03 23:59:56 +00:00
|
|
|
[purpose='layout-animated-arrow-button'] {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='mobile-dropdown-link'] {
|
|
|
|
|
width: 100%;
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 8px 32px 8px 0px;
|
2024-03-21 02:08:01 +00:00
|
|
|
margin-bottom: 8px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: @core-fleet-black;
|
2024-11-12 01:07:01 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2025-02-25 17:08:23 +00:00
|
|
|
text-decoration: none;
|
2024-03-21 02:08:01 +00:00
|
|
|
&:hover {
|
|
|
|
|
color: @core-vibrant-blue;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-01 19:47:36 +00:00
|
|
|
[purpose='mobile-dropdown-toggle'] {
|
2024-03-21 02:08:01 +00:00
|
|
|
width: 100%;
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 20px 32px;
|
2024-03-21 02:08:01 +00:00
|
|
|
margin-bottom: 4px;
|
2022-03-01 19:47:36 +00:00
|
|
|
font-weight: 700;
|
2024-03-21 02:08:01 +00:00
|
|
|
cursor: pointer;
|
2022-03-01 19:47:36 +00:00
|
|
|
color: @core-fleet-black;
|
2025-02-25 17:08:23 +00:00
|
|
|
text-decoration: none;
|
2022-03-01 19:47:36 +00:00
|
|
|
&[aria-expanded='true'] {
|
2025-09-05 03:24:04 +00:00
|
|
|
// color: #6a67fe;
|
2022-03-01 19:47:36 +00:00
|
|
|
outline: none;
|
|
|
|
|
margin-bottom: 4px;
|
2025-09-05 03:24:04 +00:00
|
|
|
img {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
2021-05-07 18:54:29 +00:00
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
&:hover {
|
2025-09-05 03:24:04 +00:00
|
|
|
// color: #6a67fe;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
height: 12px;
|
|
|
|
|
transform: rotate(-90deg);
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
2021-05-07 18:54:29 +00:00
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='mobile-nav-btn'] {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 700;
|
2024-03-21 02:08:01 +00:00
|
|
|
color: @core-fleet-black;
|
|
|
|
|
&:hover {
|
|
|
|
|
color: @core-vibrant-blue;
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2022-03-01 19:47:36 +00:00
|
|
|
[purpose='mobile-dropdown'] {
|
2024-03-21 02:08:01 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 8px 32px;
|
2024-03-21 02:08:01 +00:00
|
|
|
&.collapse {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
&.collapse.show {
|
|
|
|
|
display: flex;
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='indented-mobile-links'] {
|
|
|
|
|
padding-left: 16px;
|
2022-03-01 19:47:36 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='dropdown-item-link'] {
|
|
|
|
|
padding: 8px 0px;
|
2022-03-01 19:47:36 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='dropdown-item'] {
|
|
|
|
|
white-space: normal;
|
2021-05-07 18:54:29 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='dropdown-cta'] {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
margin-left: -8px;
|
|
|
|
|
margin-right: -8px;
|
|
|
|
|
[purpose='dropdown-cta-link'] {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #E2E4EA;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
[purpose='dropdown-cta-image'] {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
background-image: url('/images/nav-cta-meow-wolf-100x160@2x.png');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
height: 122px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
background-position: top center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
2021-05-07 18:54:29 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='mobile-nav-cta'] {
|
|
|
|
|
padding: 0px 32px 32px 32px;
|
|
|
|
|
}
|
2021-05-07 18:54:29 +00:00
|
|
|
}
|
2022-03-01 19:47:36 +00:00
|
|
|
[purpose='header-nav'] {
|
2024-03-21 02:08:01 +00:00
|
|
|
|
2025-09-05 03:24:04 +00:00
|
|
|
position: relative;
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='header-nav-btn'][aria-expanded='true'] {
|
2025-07-07 00:00:01 +00:00
|
|
|
// font-weight: 700;
|
2022-03-01 19:47:36 +00:00
|
|
|
outline: none;
|
2025-07-07 00:00:01 +00:00
|
|
|
color: @core-fleet-black;
|
2022-03-01 19:47:36 +00:00
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='header-nav-btn']:before {
|
|
|
|
|
display: block;
|
|
|
|
|
content: attr(button-text);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='log-out-button'] {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
color: @core-fleet-black-75;
|
2024-05-23 19:36:50 +00:00
|
|
|
font-size: 14px;
|
2024-03-21 02:08:01 +00:00
|
|
|
white-space: nowrap;
|
2025-02-25 17:08:23 +00:00
|
|
|
text-decoration: none;
|
2024-03-21 02:08:01 +00:00
|
|
|
&:hover {
|
2025-07-07 00:00:01 +00:00
|
|
|
color: @core-fleet-black;
|
2024-03-21 02:08:01 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
[purpose='header-nav-btn'] {
|
2025-09-05 03:24:04 +00:00
|
|
|
padding: 23px 8px;// Note: The parent container does not have veritcal padding. (Done to prevent menus from closing when users )
|
2024-03-21 02:08:01 +00:00
|
|
|
color: @core-fleet-black-75;
|
2023-02-11 00:33:12 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-block;
|
2025-03-26 16:34:33 +00:00
|
|
|
text-decoration: none;
|
2025-07-07 00:00:01 +00:00
|
|
|
width: auto;
|
|
|
|
|
margin-right: 24px;
|
2025-09-05 03:24:04 +00:00
|
|
|
img {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2023-08-18 00:01:08 +00:00
|
|
|
[purpose='header-nav-btn']:hover {
|
2025-07-07 00:00:01 +00:00
|
|
|
// font-weight: 700;
|
|
|
|
|
color: @core-fleet-black;
|
2022-03-01 19:47:36 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
&:focus {
|
2022-03-01 19:47:36 +00:00
|
|
|
outline-color: none;
|
|
|
|
|
}
|
2023-02-11 00:33:12 +00:00
|
|
|
.current-section {
|
2025-07-07 00:00:01 +00:00
|
|
|
// font-weight: 700;
|
|
|
|
|
color: @core-fleet-black;
|
2023-02-11 00:33:12 +00:00
|
|
|
svg {
|
|
|
|
|
path {
|
|
|
|
|
fill: #6a67fe;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='gh-button'] {
|
2025-07-07 00:00:01 +00:00
|
|
|
min-width: 98.5px;
|
|
|
|
|
width: 98.5px;
|
|
|
|
|
margin-right: 16px;
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2022-03-01 19:47:36 +00:00
|
|
|
[purpose='header-dropdown'] {
|
2025-09-05 03:24:04 +00:00
|
|
|
&.solutions-dropdown {
|
|
|
|
|
left: -10px;
|
|
|
|
|
}
|
|
|
|
|
&.more-dropdown {
|
2025-09-18 03:39:51 +00:00
|
|
|
left: -379px;
|
2025-09-05 03:24:04 +00:00
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
&.customers-dropdown {
|
|
|
|
|
left: -140px;
|
|
|
|
|
}
|
|
|
|
|
&.show {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 61px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #E2E4EA;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-width: 460px;
|
|
|
|
|
padding: 8px;
|
2022-03-01 19:47:36 +00:00
|
|
|
a {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 20px;
|
2025-02-25 17:08:23 +00:00
|
|
|
text-decoration: none;
|
2024-03-21 02:08:01 +00:00
|
|
|
&:not(:last-of-type) {
|
2025-09-05 03:24:04 +00:00
|
|
|
margin-bottom: 8px;
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
2025-05-13 16:21:42 +00:00
|
|
|
&[target='_blank'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2022-03-01 19:47:36 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
|
2025-07-07 00:00:01 +00:00
|
|
|
hr {
|
|
|
|
|
margin: 16px;
|
|
|
|
|
}
|
2022-03-01 19:47:36 +00:00
|
|
|
a:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='dropdown-item'] {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
[purpose='dropdown-column'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='dropdown-item'] {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
[purpose='dropdown-item-link'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
[purpose='dropdown-item-icon'] {
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
img {
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='dropdown-item-text'] {
|
|
|
|
|
[purpose='nav-item-heading'] {
|
|
|
|
|
color: #192147;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='nav-item-body'] {
|
|
|
|
|
color: #515774;
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='dropdown-cta'] {
|
2025-09-18 03:39:51 +00:00
|
|
|
margin-right: 16px;
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='dropdown-cta-link'] {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #E2E4EA;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
[purpose='dropdown-cta-image'] {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
background-image: url('/images/nav-cta-meow-wolf-100x160@2x.png');
|
|
|
|
|
background-size: contain;
|
|
|
|
|
height: 160px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='dropdown-cta-text'] {
|
|
|
|
|
padding: 5px 9px;
|
|
|
|
|
width: 160px;
|
|
|
|
|
[purpose='dropdown-cta-heading'] {
|
|
|
|
|
color: #192147;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 20px; /* 153.846% */
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='dropdown-cta-body'] {
|
|
|
|
|
color: #515774;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 18px; /* 150% */
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='cta-animated-arrow-button'] {
|
|
|
|
|
color: #192147;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 24px; /* 200% */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='button-text'] {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
}
|
|
|
|
|
[purpose='animated-arrow'] {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
stroke-width: 2px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
fill: none;
|
|
|
|
|
stroke: #FF5C83;
|
|
|
|
|
}
|
|
|
|
|
[purpose='arrow-line'] {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 10ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
[purpose='chevron'] {
|
|
|
|
|
transition: transform 100ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
[purpose='button-text'] {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
}
|
|
|
|
|
[purpose='arrow-line'] {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 150ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
[purpose='chevron'] {
|
|
|
|
|
transform: translateX(5px);
|
|
|
|
|
}
|
2021-03-31 23:08:36 +00:00
|
|
|
}
|
2021-03-23 08:56:15 +00:00
|
|
|
}
|
2024-03-28 20:26:12 +00:00
|
|
|
}
|
|
|
|
|
[purpose='admin-nav'] {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
[purpose='admin-link'] {
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
color: @core-fleet-black-75;
|
|
|
|
|
&:hover {
|
|
|
|
|
color: @core-vibrant-blue;
|
2023-08-04 23:32:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
2024-03-28 20:26:12 +00:00
|
|
|
span {
|
|
|
|
|
color: @core-fleet-black;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
}
|
2023-08-04 23:32:00 +00:00
|
|
|
}
|
2021-03-23 08:56:15 +00:00
|
|
|
|
2022-03-01 19:47:36 +00:00
|
|
|
// Footer styles
|
2020-12-02 20:48:03 +00:00
|
|
|
[purpose='page-footer'] {
|
2023-04-11 13:50:58 +00:00
|
|
|
background-color: #FFF;
|
|
|
|
|
color: #515774;
|
2020-12-02 20:48:03 +00:00
|
|
|
height: @footer-height;
|
|
|
|
|
width: 100%;
|
2024-02-15 00:04:41 +00:00
|
|
|
padding: 64px;
|
2020-12-02 20:48:03 +00:00
|
|
|
position: absolute;
|
|
|
|
|
left: 0px;
|
|
|
|
|
bottom: 0px;
|
2021-07-01 23:06:14 +00:00
|
|
|
a {
|
2023-04-11 13:50:58 +00:00
|
|
|
color: #515774;
|
2025-03-05 00:16:13 +00:00
|
|
|
text-decoration: none;
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
[purpose='footer-content'] {
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
[purpose='footer-logo'] {
|
|
|
|
|
width: 118px;
|
|
|
|
|
height: 41px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='footer-nav'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin-left: -8px;
|
|
|
|
|
margin-right: -8px;
|
|
|
|
|
margin-bottom: 80px;
|
2024-03-06 07:28:11 +00:00
|
|
|
position: relative;
|
|
|
|
|
z-index: 101;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[purpose='footer-nav-header'] {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[purpose='footer-nav-column'] {
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
a {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 150%;
|
|
|
|
|
margin-top: 8px;
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[purpose='footer-bottom'] {
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[purpose='legal-section'] {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 150%;
|
2025-01-24 18:54:45 +00:00
|
|
|
[purpose='iso-27001-badge'] {
|
|
|
|
|
width: 48px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
2025-02-25 17:08:23 +00:00
|
|
|
[purpose='footer-trust-link'] {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
line-height: 150%;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
color: @core-fleet-black-75;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
img {
|
|
|
|
|
width: 9px;
|
|
|
|
|
height: auto;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #f6f7f8;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
[purpose='creative-commons-license'] {
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 15px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='legal-links'] {
|
|
|
|
|
a {
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
display: inline;
|
2025-03-05 00:16:13 +00:00
|
|
|
text-decoration: none;
|
2023-02-11 00:33:12 +00:00
|
|
|
}
|
2021-10-04 04:28:20 +00:00
|
|
|
}
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
[purpose='footer-socials'] {
|
|
|
|
|
img {
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: auto;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='page-wrap'].reduced-footer-links {
|
2025-01-24 18:54:45 +00:00
|
|
|
padding-bottom: 96px;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
2025-06-03 19:22:40 +00:00
|
|
|
[purpose='page-wrap'].header-hidden {
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
padding-bottom: 0px;
|
2025-06-18 18:34:30 +00:00
|
|
|
background: #FFF;
|
2025-06-03 19:22:40 +00:00
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
|
2022-04-13 06:12:56 +00:00
|
|
|
// Landing page footer styles
|
2024-02-15 00:04:41 +00:00
|
|
|
[purpose='reduced-nav-footer'] {
|
2023-02-11 00:33:12 +00:00
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
width: 100%;
|
2025-01-24 18:54:45 +00:00
|
|
|
height: 96px;
|
2024-02-15 00:04:41 +00:00
|
|
|
padding: 24px 32px;
|
|
|
|
|
color: @core-fleet-black-75;
|
|
|
|
|
a {
|
2025-03-05 00:16:13 +00:00
|
|
|
text-decoration: none;
|
2024-02-15 00:04:41 +00:00
|
|
|
color: @core-fleet-black-75;
|
|
|
|
|
}
|
2022-04-13 06:12:56 +00:00
|
|
|
}
|
2020-12-02 20:48:03 +00:00
|
|
|
|
|
|
|
|
body.detected-mobile {
|
|
|
|
|
// Above and beyond the media queries below, this selector (which relies on
|
|
|
|
|
// `parasails` automatically attaching this class, if appropriate) contains
|
|
|
|
|
// styles intended to be activated specifically when loaded from a recognized
|
|
|
|
|
// mobile device, regardless of viewport dimensions. This includes tablet
|
|
|
|
|
// devices (like the iPad) as well as handset devices (like the iPhone).
|
|
|
|
|
// …
|
|
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
@media (max-width: 991px) {
|
2024-02-15 00:04:41 +00:00
|
|
|
[purpose='page-wrap'] {
|
2025-01-24 18:54:45 +00:00
|
|
|
padding-bottom: 487px;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
[purpose='page-footer'] {
|
|
|
|
|
padding: 64px 40px;
|
2025-01-24 18:54:45 +00:00
|
|
|
height: 487px;
|
2024-03-21 21:24:09 +00:00
|
|
|
[purpose='footer-socials'] {
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
[purpose='continue-banner'] {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 70px;
|
|
|
|
|
height: 0px;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: unset;
|
|
|
|
|
width: 100%;
|
|
|
|
|
[purpose='banner-body'].invisible {
|
|
|
|
|
transform: translateY(200px);
|
|
|
|
|
}
|
|
|
|
|
[purpose='banner-body'] {
|
|
|
|
|
transition: transform 1s ease-in-out;
|
|
|
|
|
[purpose='banner-close-button'] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
height: 70px;
|
|
|
|
|
min-height: unset;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-right: 0px;
|
|
|
|
|
position: relative;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 1px solid #E2E4EA;
|
|
|
|
|
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
|
|
|
|
|
padding: 8px;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
[purpose='banner-text'] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-right: 24px;
|
|
|
|
|
padding: 8px 8px 8px 16px;
|
|
|
|
|
p {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
[purpose='form-progress-bar'] {
|
|
|
|
|
height: 6px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #E2E4EA;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
[purpose='current-progress'] {
|
|
|
|
|
background-color: #3DB67B;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='continue-button'] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='continue-chevron'] {
|
|
|
|
|
display: block;
|
|
|
|
|
img {
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='banner-image'] {
|
|
|
|
|
height: 54px;
|
|
|
|
|
min-width: 54px;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='banner-body'].collapsed {
|
|
|
|
|
[purpose='banner-text'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2024-07-03 22:11:18 +00:00
|
|
|
[purpose='banner-image'] {
|
|
|
|
|
height: 54px;
|
|
|
|
|
min-width: 54px;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
transform: none;
|
|
|
|
|
transition: none;
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
height: 70px;
|
|
|
|
|
min-height: unset;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-right: 0px;
|
|
|
|
|
position: relative;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 1px solid #E2E4EA;
|
|
|
|
|
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
|
|
|
|
|
padding: 8px;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-10 03:23:14 +00:00
|
|
|
}
|
2020-12-02 20:48:03 +00:00
|
|
|
|
2021-10-29 00:53:20 +00:00
|
|
|
@media (max-width: 767px) {
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='page-header'] {
|
|
|
|
|
[purpose='mobile-nav'] {
|
|
|
|
|
[purpose='mobile-nav-header'] {
|
|
|
|
|
padding: 19px 32px;
|
|
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='mobile-dropdown'], [purpose='mobile-dropdown-toggle'], [purpose='mobile-nav-cta'] {
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
padding-right: 32px;
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-02 20:48:03 +00:00
|
|
|
[purpose='page-wrap'] {
|
2025-01-24 18:54:45 +00:00
|
|
|
padding-bottom: 728px;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
[purpose='footer-nav-column']:not(:last-of-type) {
|
|
|
|
|
margin-bottom: 64px;
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
[purpose='page-footer'] {
|
|
|
|
|
padding: 64px 32px;
|
2025-01-24 18:54:45 +00:00
|
|
|
height: 728px;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
2024-03-21 21:24:09 +00:00
|
|
|
[purpose='page-wrap'].reduced-footer-links {
|
2025-01-24 18:54:45 +00:00
|
|
|
padding-bottom: 150px;
|
2024-03-21 21:24:09 +00:00
|
|
|
}
|
|
|
|
|
[purpose='reduced-nav-footer'] {
|
2025-01-24 18:54:45 +00:00
|
|
|
height: 150px;
|
2024-03-21 21:24:09 +00:00
|
|
|
[purpose='footer-socials'] {
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 00:04:41 +00:00
|
|
|
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
2021-10-29 00:53:20 +00:00
|
|
|
@media (max-width: 575px) {
|
2022-06-21 16:12:21 +00:00
|
|
|
[purpose='page-wrap'] {
|
2025-01-24 18:54:45 +00:00
|
|
|
padding-bottom: 955px;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='page-header'] {
|
2024-05-23 19:36:50 +00:00
|
|
|
padding: 19px 20px;
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='mobile-nav'] {
|
|
|
|
|
[purpose='mobile-nav-header'] {
|
2024-05-23 19:36:50 +00:00
|
|
|
padding: 19px 20px;
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='mobile-dropdown'], [purpose='mobile-dropdown-toggle'], [purpose='mobile-nav-cta'] {
|
|
|
|
|
padding-left: 24px;
|
|
|
|
|
padding-right: 24px;
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-21 21:24:09 +00:00
|
|
|
[purpose='page-wrap'].reduced-footer-links {
|
2025-01-24 18:54:45 +00:00
|
|
|
padding-bottom: 200px;
|
2024-03-21 21:24:09 +00:00
|
|
|
}
|
2024-02-15 00:04:41 +00:00
|
|
|
[purpose='reduced-nav-footer'] {
|
2025-01-24 18:54:45 +00:00
|
|
|
height: 200px;
|
2024-03-21 21:24:09 +00:00
|
|
|
padding: 24px;
|
2024-02-15 00:04:41 +00:00
|
|
|
}
|
|
|
|
|
[purpose='page-footer'] {
|
2025-01-24 18:54:45 +00:00
|
|
|
height: 955px;
|
2024-02-15 00:04:41 +00:00
|
|
|
padding: 64px 24px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='footer-nav'] {
|
|
|
|
|
margin-bottom: 64px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='footer-nav-column']:not(:last-of-type) {
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='license-information'] {
|
|
|
|
|
margin-bottom: 32px;
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
2024-05-31 23:44:13 +00:00
|
|
|
|
2020-12-02 20:48:03 +00:00
|
|
|
}
|
|
|
|
|
|
2024-03-21 02:08:01 +00:00
|
|
|
@media (max-width: 375px) {
|
|
|
|
|
[purpose='page-header'] {
|
2024-11-21 21:09:04 +00:00
|
|
|
padding: 19px 16px;
|
2024-03-21 02:08:01 +00:00
|
|
|
[purpose='mobile-nav'] {
|
|
|
|
|
[purpose='mobile-nav-header'] {
|
|
|
|
|
padding: 19px 16px;
|
|
|
|
|
}
|
2025-09-05 03:24:04 +00:00
|
|
|
[purpose='mobile-dropdown'], [purpose='mobile-dropdown-toggle'], [purpose='mobile-nav-cta'] {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
padding-right: 16px;
|
2024-03-21 02:08:01 +00:00
|
|
|
}
|
|
|
|
|
}
|
2022-08-10 03:23:14 +00:00
|
|
|
}
|
|
|
|
|
}
|
Implement sticky nav for fleetdm.com (#5298)
* feat: implement sticky nav for fleetdm except the homepage
* feat: add sticky nav to homepage
* Add note for v 4.13 to fleetctl docs (#5274)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* License dispenser query strings (#5321)
Co-authored-by: Tim Kern <tim@fleetdm.com>
* chore(test): rewritten query side panel test using rtl (#5189)
* Update get started (fleetctl preview) instructions on website (#5312)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* update customer layout (#5329)
* Handbook: Rename Slack channel, suggest DRI for #help-golang (#5157)
* Handbook: Rename Slack channel, suggest DRI for #help-golang
* Deleted #help-golang and #help-frontend
This is based on the call Zach and I had today about eliminating the extra "Help" channels, now that there are development groups where more focused conversation can happen without blasting every engineer in the company.
FYI I checked and #help-frontend is actively used, whereas #help-golang is much less active.
* Editor pass - Added and renamed the Rituals section (#5300)
Editor pass for: https://github.com/fleetdm/fleet/pull/5183
I added and renamed the Rituals section with a link for consistency.
This PR is related to: https://github.com/fleetdm/fleet/pull/5299
* Unified text for private IP address (#5301)
* unified text for private ip address
* updated capitalization
* Added utm_source tracking to calendly link (#5281)
Will allow us to track schedule demo submissions from pricing page by adding utm_source
* Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components
* component clean up
* removed redux from routes
* rename file
* moved useDeepEffect hook with others
* removed redux, fleet, app_constants dirs; added types to utilities
* style cleanup
* typo fix
* removed unused ts-ignore comments
* removed redux packages!!!
* formatting
* fixed typing for simple search function
* updated frontend readme
* Website add articles page. (#5243)
* create '/articles' and add 4 test articles
* update build-static-content script for '/articles'
* article pages
* Validate article page metaData
* add articles linked from header, remove test articles
* update article styles
* comment out /articles route, update blog post links
* Move article category page to different branch for future PR
* Update build-static-content.js
* remove pagescript
* Update deploying-fleet-on-render.md
* update meta tags
* lint fixes
* Style & Markdown updates
Made a couple of fixes to the styling and markdown.
* update view action, replace route with regex, update links
* authorsGitHubUserName -> authorGitHubUsername, authorsFullName -> authorFullName
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
* Add slack notif when integration test fails (#5332)
* Editor pass - Registering in a new state w/ Gusto (#5305)
Editor pass for: https://github.com/fleetdm/fleet/pull/5237
* Editor pass - Creating a consulting agreement (#5304)
* Editor pass - Creating a consulting agreement
Editor pass for: https://github.com/fleetdm/fleet/pull/5273/files
* Update people.md
Co-authored-by: Eric <eashaw@sailsjs.com>
* Fix handbook index (#5341)
* fix: review request changes
* fix: revert to using window.innerHeigh for logic to hide the header
* Update layout.ejs
I don't know if this is good syntax, but I want the masthead to stay in position for a little longer.
* feat: format if logic
* fix: rename handler function to windowScrolled
Co-authored-by: Katheryn Satterlee <me@ksatter.com>
Co-authored-by: Eric <eashaw@sailsjs.com>
Co-authored-by: Tim Kern <tim@fleetdm.com>
Co-authored-by: Tharun Rajendran <rajendrantharun@live.com>
Co-authored-by: Zach Wasserman <zach@fleetdm.com>
Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
Co-authored-by: Desmi-Dizney <99777687+Desmi-Dizney@users.noreply.github.com>
Co-authored-by: Martavis Parker <47053705+martavis@users.noreply.github.com>
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
2022-04-25 12:02:15 +00:00
|
|
|
|
2023-12-14 23:06:51 +00:00
|
|
|
// Some utilities for the sticky nav behaviour.
|
|
|
|
|
// Note: this will not be applied if a navigation menu open.
|
2023-12-15 16:00:41 +00:00
|
|
|
.translate-y-0 {
|
2025-04-07 04:40:15 +00:00
|
|
|
transform: translateY(-81px);
|
Implement sticky nav for fleetdm.com (#5298)
* feat: implement sticky nav for fleetdm except the homepage
* feat: add sticky nav to homepage
* Add note for v 4.13 to fleetctl docs (#5274)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* License dispenser query strings (#5321)
Co-authored-by: Tim Kern <tim@fleetdm.com>
* chore(test): rewritten query side panel test using rtl (#5189)
* Update get started (fleetctl preview) instructions on website (#5312)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* update customer layout (#5329)
* Handbook: Rename Slack channel, suggest DRI for #help-golang (#5157)
* Handbook: Rename Slack channel, suggest DRI for #help-golang
* Deleted #help-golang and #help-frontend
This is based on the call Zach and I had today about eliminating the extra "Help" channels, now that there are development groups where more focused conversation can happen without blasting every engineer in the company.
FYI I checked and #help-frontend is actively used, whereas #help-golang is much less active.
* Editor pass - Added and renamed the Rituals section (#5300)
Editor pass for: https://github.com/fleetdm/fleet/pull/5183
I added and renamed the Rituals section with a link for consistency.
This PR is related to: https://github.com/fleetdm/fleet/pull/5299
* Unified text for private IP address (#5301)
* unified text for private ip address
* updated capitalization
* Added utm_source tracking to calendly link (#5281)
Will allow us to track schedule demo submissions from pricing page by adding utm_source
* Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components
* component clean up
* removed redux from routes
* rename file
* moved useDeepEffect hook with others
* removed redux, fleet, app_constants dirs; added types to utilities
* style cleanup
* typo fix
* removed unused ts-ignore comments
* removed redux packages!!!
* formatting
* fixed typing for simple search function
* updated frontend readme
* Website add articles page. (#5243)
* create '/articles' and add 4 test articles
* update build-static-content script for '/articles'
* article pages
* Validate article page metaData
* add articles linked from header, remove test articles
* update article styles
* comment out /articles route, update blog post links
* Move article category page to different branch for future PR
* Update build-static-content.js
* remove pagescript
* Update deploying-fleet-on-render.md
* update meta tags
* lint fixes
* Style & Markdown updates
Made a couple of fixes to the styling and markdown.
* update view action, replace route with regex, update links
* authorsGitHubUserName -> authorGitHubUsername, authorsFullName -> authorFullName
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
* Add slack notif when integration test fails (#5332)
* Editor pass - Registering in a new state w/ Gusto (#5305)
Editor pass for: https://github.com/fleetdm/fleet/pull/5237
* Editor pass - Creating a consulting agreement (#5304)
* Editor pass - Creating a consulting agreement
Editor pass for: https://github.com/fleetdm/fleet/pull/5273/files
* Update people.md
Co-authored-by: Eric <eashaw@sailsjs.com>
* Fix handbook index (#5341)
* fix: review request changes
* fix: revert to using window.innerHeigh for logic to hide the header
* Update layout.ejs
I don't know if this is good syntax, but I want the masthead to stay in position for a little longer.
* feat: format if logic
* fix: rename handler function to windowScrolled
Co-authored-by: Katheryn Satterlee <me@ksatter.com>
Co-authored-by: Eric <eashaw@sailsjs.com>
Co-authored-by: Tim Kern <tim@fleetdm.com>
Co-authored-by: Tharun Rajendran <rajendrantharun@live.com>
Co-authored-by: Zach Wasserman <zach@fleetdm.com>
Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
Co-authored-by: Desmi-Dizney <99777687+Desmi-Dizney@users.noreply.github.com>
Co-authored-by: Martavis Parker <47053705+martavis@users.noreply.github.com>
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
2022-04-25 12:02:15 +00:00
|
|
|
}
|