Minor style fixes
This commit is contained in:
parent
2fdb3c5643
commit
b22e27bce6
|
@ -1,5 +1,5 @@
|
|||
.comment {
|
||||
margin: 0.5em 0;
|
||||
margin: 0 0 0.5em;
|
||||
padding: 1rem;
|
||||
transition: background-color 0.3s;
|
||||
position: relative;
|
||||
|
|
|
@ -4,14 +4,15 @@
|
|||
align-self: center;
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-wrap: wrap;
|
||||
@include font-size(1.2rem);
|
||||
font-size: 1.2rem;
|
||||
gap: 1rem;
|
||||
justify-content: flex-start;
|
||||
margin: 0 1em 0 0;
|
||||
|
||||
.date {
|
||||
font-weight: 500;
|
||||
margin-right: 1rem;
|
||||
|
||||
.icon {
|
||||
line-height: 1;
|
||||
|
|
|
@ -9,6 +9,10 @@
|
|||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.info {
|
||||
@include font-size(1.4rem);
|
||||
border: none;
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
flex: 1;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
align-items: baseline;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
@ -490,6 +490,7 @@
|
|||
color: #696969;
|
||||
@include font-size(2rem);
|
||||
font-weight: 500;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.authorSubscribe {
|
||||
|
|
|
@ -508,6 +508,7 @@
|
|||
a,
|
||||
a:link {
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -553,6 +554,10 @@
|
|||
&:global(.loginbtn) {
|
||||
background: #e9e9ee;
|
||||
|
||||
@include media-breakpoint-up(xl) {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.icon {
|
||||
height: 2.4rem;
|
||||
width: 2.4rem;
|
||||
|
|
|
@ -129,13 +129,14 @@ export const HeaderAuth = (props: Props) => {
|
|||
|
||||
<Show when={isNotificationsVisible()}>
|
||||
<div class={styles.userControlItem} onClick={handleBellIconClick}>
|
||||
{/*TODO: check markup (cursor: pointer, hover)*/}
|
||||
<Icon name="bell-white" counter={unreadNotificationsCount()} class={styles.icon} />
|
||||
<Icon
|
||||
name="bell-white-hover"
|
||||
counter={unreadNotificationsCount()}
|
||||
class={clsx(styles.icon, styles.iconHover)}
|
||||
/>
|
||||
<div class={styles.button}>
|
||||
<Icon name="bell-white" counter={unreadNotificationsCount()} class={styles.icon} />
|
||||
<Icon
|
||||
name="bell-white-hover"
|
||||
counter={unreadNotificationsCount()}
|
||||
class={clsx(styles.icon, styles.iconHover)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</Show>
|
||||
|
||||
|
|
|
@ -82,6 +82,7 @@
|
|||
overflow: auto;
|
||||
padding: 5.4rem 2.4rem 2.4rem;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
padding: 5rem;
|
||||
|
|
|
@ -9,6 +9,10 @@
|
|||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.picture {
|
||||
display: block;
|
||||
width: 40px;
|
||||
|
|
|
@ -8,8 +8,12 @@
|
|||
}
|
||||
|
||||
.groupControls {
|
||||
margin-bottom: 6rem !important;
|
||||
margin-bottom: 2rem !important;
|
||||
margin-top: 0 !important;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin-bottom: 6rem !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.button {
|
||||
border-radius: 2px;
|
||||
display: flex;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 500;
|
||||
|
|
Loading…
Reference in New Issue
Block a user