Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lxieyang committed Oct 20, 2021
1 parent 861d9e1 commit ba00daf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 17 deletions.
20 changes: 5 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ Please provide valuable feedback by:

# v2.x (official releases)

### [2.0.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v2.0.0) (2021-10-21)
### [2.0.1](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v2.0.1) (2021-10-21)

#### New Features
- Fixed a bug where texts could be center-aligned instead of left-aligned in the tab preview box.

- Tab Preview
### [2.0.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v2.0.0) (2021-10-20)

- Tab Preview support!

<img src="preview/repo/tab-preview-light.png" width="600"/>
<br/>
Expand All @@ -35,24 +37,18 @@ Please provide valuable feedback by:

### [1.10.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.10.0) (2021-10-18)

#### New Features

- Bug fixes
- Smoother drag experience

### [1.9.1](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.9.1) (2021-10-17)

#### New Features

- Refreshed styles

<img src="preview/repo/refreshed-look-light.png" width="250"/>
<img src="preview/repo/refreshed-look-dark.png" width="250"/>

### [1.8.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v1.8.0) (2020-04-05 #StayingAtHome #TogetherWeBeatCOVID19)

#### New Features

- Automatically show/hide sidebar ([#27](https://github.com/lxieyang/vertical-tabs-chrome-extension/issues/27)):

_Simply move your mouse cursor to either side (depending on your chosen sidebar position, see the first setting entry) of the window to open the sidebar. Once your cursor moves away, the sidebar will automatically close._
Expand All @@ -63,8 +59,6 @@ Please provide valuable feedback by:

<img src="preview/repo/update-notice-v2.png" width="400"/>

#### Other

- Updated development dependencies
- Bug fixes and improvements

Expand Down Expand Up @@ -176,14 +170,10 @@ Please provide valuable feedback by:

### [0.4.0](https://github.com/lxieyang/vertical-tabs-chrome-extension/releases/tag/v0.4.0) (2019-08-12)

#### New Features

- Context menus.
- Added (re)loading indicator.
- Added new keyboard shortcut: `Ctrl/Command + E`.

#### Bug fixes

- Fixed a browser icon bug.
- Autofocuses on the search box once sidebar opens.

Expand Down
7 changes: 5 additions & 2 deletions src/pages/Content/modules/tabPreviewFrame/tabPreviewFrame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ import styled from 'styled-components';

const Container = styled.div`
width: 220px;
font-family: sans-serif;
font-size: 14px !important;
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
border-radius: 3px;
padding: 0px;
text-align: left;
font-family: sans-serif;
font-size: 14px !important;
font-style: normal;
font-weight: normal;
`;

const Title = styled.div`
Expand Down

0 comments on commit ba00daf

Please sign in to comment.