dockerize it

This commit is contained in:
2025-07-25 23:06:57 +03:00
parent d0f99eba4a
commit 4c29f65c32
7 changed files with 130 additions and 103 deletions

View File

@@ -339,58 +339,7 @@ const Share: Component<{ handlers: Handlers; class?: string }> = (props) => {
["Chrome", "Firefox", "Opera"].includes(state.browser as string)
}
>
<hr />
<h2>
Install this style via{" "}
<a
href={
state.browser === "Chrome"
? "https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne"
: state.browser === "Firefox"
? "https://addons.mozilla.org/pl/firefox/addon/styl-us/"
: "https://addons.opera.com/pl/extensions/details/stylus/"
}
target="_blank"
>
Stylus
</a>
</h2>
<p class="stylus">
Pieces:{" "}
<a
href={`stylus/pieces/${state.boardConfig.piecesStyle}_lichess.user.css`}
target="_blank"
title="Install"
>
lichess
</a>
<span className="delimiter"> | </span>
<a
href={`stylus/pieces/${state.boardConfig.piecesStyle}_chesscom.user.css`}
target="_blank"
title="Install"
>
chess.com
</a>
</p>
<p class="stylus">
Board: &nbsp;
<a
href={`stylus/boards/${state.boardConfig.boardStyle}_lichess.user.css`}
target="_blank"
title="Install"
>
lichess
</a>
<span className="delimiter"> | </span>
<a
href={`stylus/boards/${state.boardConfig.boardStyle}_chesscom.user.css`}
target="_blank"
title="Install"
>
chess.com
</a>
</p>
{/* Removed Stylus install and board/pieces links */}
</Show>
</Scrollable>
);