Skip to content

Commit 23c7146

Browse files
authored
Minor Fixes (tauri-apps#766)
* Adapt capitalisation * Fix announcement bar link hover color * Remove OSList (no longer used) * Remove Icon component (no longer used) * Remove themify (no longer used), update styles * Custom CSS * Remove lottieplayer (no longer used) * Move crowdin CLI to dev dep * Fix package outlines * Fix button hovers * Remove non-standard link modification * Revert CSS changes
1 parent dcb29bb commit 23c7146

13 files changed

+25
-1325
lines changed

blog/tauri-programme-turns-1-and-board-elections.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors: [beanow]
33
description: The one year anniversary for Tauri becoming a programme within The Commons Conservancy is upcoming on the 16th of July!
44
---
55

6-
# Tauri Programme turns 1 and Board elections
6+
# Tauri Programme Turns 1 and Board Elections
77

88
The one year anniversary for Tauri becoming a programme within [The Commons Conservancy][tcc-home] is upcoming on the 16th of July! On that anniversary, two of our Directors on the Tauri Board will be at the end of their first half-term. The Board will hold an election on the 15th of July to decide the Directors for the next two year term.
99

@@ -12,6 +12,7 @@ The Tauri Board has a minimum of three, and a maximum of seven people. Right at
1212
Honestly those are big shoes to fill! So to avoid unnecessary disappointment, in this election we decided to add a requirement: _You must be currently part of a working group to apply as a candidate._
1313

1414
If you're still with me, then here are some additional details:
15+
1516
- Please notify the board _**before July 15th 00:00 UTC**_ if you would like to apply as a candidate.
1617
- You can mention `@board` on Discord, or DM `Beanow#5887` if you want your application to be kept private within the Board.
1718
- Optionally, you can include a short motivation for your application.
@@ -23,6 +24,5 @@ All this is governed by our [statutes and core regulations][statutes-dracc] if y
2324

2425
We'll be back soon with an update.
2526

26-
27-
[tcc-home]: https://commonsconservancy.org/ "The Commons Conservancy"
28-
[statutes-dracc]: https://dracc.commonsconservancy.org/0035/ "Statutes of Tauri"
27+
[tcc-home]: https://commonsconservancy.org/ 'The Commons Conservancy'
28+
[statutes-dracc]: https://dracc.commonsconservancy.org/0035/ 'Statutes of Tauri'

docusaurus.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ const siteConfig = {
235235
},
236236
announcementBar: {
237237
content:
238-
"<b>🚀 Tauri 1.0 has launched! <a href='/blog/tauri_1_0'>Read the blog post</a></b>",
238+
"<b>🚀 Tauri 1.0 has launched! <a id='announcement-link' href='/blog/tauri_1_0'>Read the blog post</a></b>",
239239
backgroundColor: 'var(--ifm-color-primary)',
240240
textColor: 'var(--ifm-button-color)',
241241
},
@@ -296,7 +296,6 @@ const siteConfig = {
296296
],
297297
],
298298
plugins: [
299-
path.resolve(__dirname, './plugins/dynamic-css.js'),
300299
path.resolve('./plugins/external-assets'),
301300
[
302301
'@docusaurus/plugin-pwa',

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"@docusaurus/preset-classic": "2.0.0-rc.1",
1818
"@docusaurus/theme-common": "2.0.0-rc.1",
1919
"@fontsource/rubik": "4.5.10",
20-
"@lottiefiles/lottie-player": "1.5.7",
2120
"@mdx-js/react": "1.6.22",
2221
"apexcharts": "3.35.3",
2322
"bootstrap-icons": "1.9.0",
@@ -48,6 +47,7 @@
4847
"devDependencies": {
4948
"@actions/core": "1.9.0",
5049
"@actions/github": "5.0.3",
50+
"@crowdin/cli": "3.7.9",
5151
"@crowdin/crowdin-api-client": "1.19.0",
5252
"esbuild-loader": "2.19.0"
5353
}

plugins/dynamic-css.js

-29
This file was deleted.

src/css/custom.css

+1-27
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* work well for content-centric websites.
66
*/
77

8-
@import 'themify-icons.css';
98
@import '~@fontsource/rubik';
109
@import 'bootstrap-icons';
1110

@@ -50,10 +49,6 @@
5049
padding: 0 var(--ifm-pre-padding);
5150
}
5251

53-
.hero__subtitle {
54-
margin-top: 26px;
55-
}
56-
5752
.mermaid svg {
5853
display: block;
5954
margin: auto;
@@ -67,14 +62,6 @@
6762
max-height: 191px;
6863
}
6964

70-
html[data-theme='dark'] #starfield {
71-
display: block !important;
72-
width: 100%;
73-
height: 100%;
74-
background: #111;
75-
position: absolute;
76-
}
77-
7865
.videowrapper {
7966
float: none;
8067
clear: both;
@@ -93,21 +80,8 @@ html[data-theme='dark'] #starfield {
9380
height: 100%;
9481
}
9582

96-
h2 > [class^='ti-'] {
97-
vertical-align: middle;
98-
}
99-
100-
.anchorify::before {
101-
display: block;
102-
content: ' ';
103-
margin-top: -60px;
104-
height: 60px;
105-
visibility: hidden;
106-
pointer-events: none;
107-
}
108-
10983
[class*='announcementBar_'] {
110-
min-height: 52px;
84+
min-height: 3rem;
11185
}
11286

11387
[class*='property_'] .hash-link {

0 commit comments

Comments
 (0)