Skip to content

Commit

Permalink
docs: readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
vanflux committed Aug 11, 2023
1 parent 727260b commit 7021ca0
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,19 @@
## Features

- Themer (customization)
- Use or create your own theme!

## Default theme

![](./docs/images/wp-ui.png)

## 300+ gradients for background
## Themes and theme configuration

![](./docs/images/gradients.png)
![](./docs/images/mod-ui.png)

## Export/import configurations
## 300+ gradients available for the background

![](./docs/images/export-import.png)
![](./docs/images/gradients.png)

## Usage

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Version $VERSION released! 🥳

Changes:

- First release
- Themes added!

Follow the readme instructions to install the extension
Binary file removed docs/images/config-ui.png
Binary file not shown.
Binary file added docs/images/mod-ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/page/features/themer/components/import-modal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Button } from "@page-components/basic/button";
import { Flex } from "@page-components/basic/flex";
import { Modal } from "@page-components/basic/modal";
import { Text } from "@page-components/basic/text";
import { TextInput } from "@page-components/basic/text-input";
import { useThemerConfig } from "@page-contexts/themer-config";
import { useThemerThemes } from "@page-contexts/themer-themes";
Expand Down Expand Up @@ -48,6 +49,7 @@ export const ImportModal = ({ open, onRequestClose, onImport }: Props) => {
return (
<Modal open={open} onRequestClose={onRequestClose}>
<Flex direction="column" gap={8}>
<Text>Import External Theme</Text>
<TextInput placeholder="Data here..." value={value} fullWidth onChange={setValue} />
<Flex gap={8}>
<Button onClick={() => handleImport(false)} fullWidth>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
flex-direction: column;
gap: 8px;
padding: 8px;
min-width: 250px;
min-width: 300px;
min-height: 300px;
background-color: rgba(0, 0, 0, 40%);
}
2 changes: 1 addition & 1 deletion src/page/features/themer/components/themes-menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function ThemesMenu() {
<Button fullWidth onClick={() => setTab(0)}>
<Flex gap={8} align="center">
<Icon type="paintRoller" size={16} />
System
Predefined
</Flex>
</Button>
<Button fullWidth onClick={() => setTab(1)}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.container {
padding: 8px;
min-width: 250px;
max-width: 250px;
min-width: 260px;
min-height: 260px;
height: 300px;
background-color: rgba(0, 0, 0, 40%);
overflow: auto;
Expand Down

0 comments on commit 7021ca0

Please sign in to comment.