Skip to content

Commit 2470ed0

Browse files
authored
Changed eye icon in sidebar to lock, changed padding of alert message to be aligned with collection title (#619)
1 parent 0290609 commit 2470ed0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

src/internal-packages/app/styles/status-row.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
display: flex;
33
flex-wrap: nowrap;
44
align-items: center;
5-
padding: 5px 12px;
5+
padding: 5px 15px;
66

77
min-height: 26px;
88
border-bottom: 1px solid @gray7;

src/internal-packages/sidebar/lib/components/sidebar-collection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SidebarCollection extends React.Component {
2626
renderReadonly() {
2727
if (this.props.readonly) {
2828
return (
29-
<i className="fa fa-eye" aria-hidden="true" />
29+
<i className="fa fa-lock" aria-hidden="true" />
3030
);
3131
}
3232
}

src/internal-packages/sidebar/styles/index.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
&:hover {
4141
background-color: #42494f;
4242
}
43+
44+
.fa {
45+
font-size: 12px;
46+
margin-right: 5px;
47+
}
4348
}
4449

4550
&-is-active,

0 commit comments

Comments
 (0)