Skip to content

Commit d53e97c

Browse files
committed
fixed #12. official dark theme support
1 parent 0087124 commit d53e97c

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ All notable changes to this project will be documented in this file.
1212

1313
# v1.x (official releases)
1414

15+
### [1.5.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.5.0) (2019-12-26)
16+
17+
- Dark theme support! 🕶️🕶️🕶️
18+
19+
<img src="preview/repo/dark-mode.png" width="300"/>
20+
1521
### [1.2.1](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.2.1) (2019-12-01)
1622

1723
- Remove `AutoFocus` feature.
@@ -21,7 +27,7 @@ All notable changes to this project will be documented in this file.
2127

2228
- Prompt users to refresh pages after the extension got updated to a newer version.
2329

24-
![update-notice](preview/repo/update-notice.png)
30+
<img src="preview/repo/update-notice.png" width="300"/>
2531

2632
### [1.1.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.1.0) (2019-09-01)
2733

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ Chrome web store link: [Vertical Tabs (https://chrome.google.com/webstore/detail
2424

2525
---
2626

27+
**Dark theme support is here 🕶️🕶️🕶️**
28+
29+
<img src="preview/repo/dark-mode.png" width="300"/>
30+
31+
---
32+
2733
![preview](/preview/chrome-store/preview-1.png)
2834

2935
Youtube Preview Link: [https://youtu.be/BcpD38IjY6A](https://youtu.be/BcpD38IjY6A)
@@ -36,6 +42,7 @@ Youtube Preview Link: [https://youtu.be/BcpD38IjY6A](https://youtu.be/BcpD38IjY6
3642

3743
## Features
3844

45+
- Dark theme support.
3946
- Display tabs vertically in a sidebar on web pages.
4047
- Tabs are displayed with the same style as Google Chrome.
4148
- Drag and Drop to reorder tabs.
@@ -48,7 +55,7 @@ Youtube Preview Link: [https://youtu.be/BcpD38IjY6A](https://youtu.be/BcpD38IjY6
4855

4956
## Planned Features
5057

51-
- Dark theme
58+
- Tree styled tabs
5259

5360
## 👉 👉 [Release Notes and Change log](/CHANGELOG.md)
5461

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vertical-tabs-chrome-extension",
3-
"version": "1.3.0",
3+
"version": "1.5.0",
44
"description": "A chrome extension that presents your tabs vertically.",
55
"license": "MIT",
66
"repository": {

preview/repo/dark-mode.png

94.7 KB
Loading

src/pages/Content/modules/frame/frame.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class Frame extends Component {
7070
isMinimized: true, // default is minimized,
7171

7272
isDragging: false,
73-
width: 280,
73+
width: 320,
7474
height: '100%',
7575
};
7676

0 commit comments

Comments
 (0)