Skip to content

Commit 3458e8e

Browse files
author
Nicholas Case
committed
one more quick css change, for footer style CMPs
1 parent ed1dee2 commit 3458e8e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/components/popup/intro/introV2.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default class IntroV2 extends Component {
3939
{config.logoUrl &&
4040
<img class={style.logo} src={config.logoUrl} />
4141
}
42-
<div class={style.title}>
42+
<div class={config.logoUrl ? style.title + " " + style.imagePadding : style.title}>
4343
<LocalLabel providedValue={localization && localization.intro ? localization.intro.title : ''} localizeKey='title'>Thanks for visiting </LocalLabel>
4444
<LocalLabel providedValue={localization && localization.intro ? localization.intro.domain : ''} localizeKey='domain'></LocalLabel>
4545
</div>

src/components/popup/intro/introV2.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
@import '../../../style/variables';
22

3+
.imagePadding {
4+
padding-left: 10px;
5+
}
6+
37
div.intro {
48
padding: 0 32px;
59
max-height: 100%;
@@ -22,7 +26,6 @@ max-height: 100%;
2226
font-weight: bold;
2327

2428
.title {
25-
padding-left: 10px;
2629
float: left;
2730
line-height: 1.5;
2831
}

0 commit comments

Comments
 (0)