mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Website: Fix website deploy workflow (#14189)
Changes: - removed a closing tag that had no opening tag on `basic-article.ejs`. - fixed lint errors in the `basic-article.less` - Fixed the title of a ritual in `ceo.rituals.yml`
This commit is contained in:
parent
86daf97425
commit
373f792683
3 changed files with 8 additions and 8 deletions
|
|
@ -19,7 +19,7 @@
|
|||
moreInfoUrl: "https://fleetdm.com/handbook/company/ceo#process-the-ceos-email"
|
||||
dri: "sampfluger88"
|
||||
-
|
||||
task: "Process all /"New requests/" on the #g-ceo kanban board"
|
||||
task: "Process all \"New requests\" on the #g-ceo kanban board"
|
||||
startedOn: "2023-07-29"
|
||||
frequency: "Daily ⏰"
|
||||
description: "Process and prioritize all new issues and PRs"
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@
|
|||
font-size: 16px;
|
||||
}
|
||||
&:hover {
|
||||
background-color: rgba(25,33,71,.05);
|
||||
background-color: rgba(25, 33, 71, 0.05);
|
||||
}
|
||||
&:active{
|
||||
background-color: rgba(25,33,71,.1);
|
||||
&:active {
|
||||
background-color: rgba(25, 33, 71, 0.1);
|
||||
}
|
||||
}
|
||||
[purpose='edit-button'] {
|
||||
|
|
@ -62,10 +62,10 @@
|
|||
line-height: 21px;
|
||||
border-radius: 6px;
|
||||
&:hover {
|
||||
background-color: rgba(25,33,71,.05);
|
||||
background-color: rgba(25, 33, 71, 0.05);
|
||||
}
|
||||
&:active{
|
||||
background-color: rgba(25,33,71,.1);
|
||||
&:active {
|
||||
background-color: rgba(25, 33, 71, 0.1);
|
||||
}
|
||||
}
|
||||
[purpose='article-details'] {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
<div class="d-flex flex-row align-items-center pt-3 pt-sm-1">
|
||||
<a purpose="rss-button" target="_blank" :href="'/rss/'+articleCategorySlug"><span>Subscribe</span></a>
|
||||
<a purpose="edit-button" class="d-flex flex-row align-items-center" target="_blank" :href="'https://github.com/fleetdm/fleet/edit/main/articles/'+thisPage.sectionRelativeRepoPath"><img alt="A pencil icon" src="/images/pencil-16x16@2x.png">Edit page</span></a>
|
||||
<a purpose="edit-button" class="d-flex flex-row align-items-center" target="_blank" :href="'https://github.com/fleetdm/fleet/edit/main/articles/'+thisPage.sectionRelativeRepoPath"><img alt="A pencil icon" src="/images/pencil-16x16@2x.png">Edit page</a>
|
||||
</div>
|
||||
</div>
|
||||
<div purpose="article-content" class="d-flex flex-column" parasails-has-no-page-script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue