mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
fixes
This commit is contained in:
parent
357e60bba2
commit
aac2c49469
@ -16,11 +16,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.theme-dark {
|
|
||||||
background-color: #3d5f6e !important;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-tertiary-split {
|
.bg-tertiary-split {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-bottom: 2px solid darken($quaternary, 5);
|
border-bottom: 2px solid darken($quaternary, 5);
|
||||||
|
@ -2,6 +2,15 @@
|
|||||||
width: $chat-history-width;
|
width: $chat-history-width;
|
||||||
height: $chat-history-height;
|
height: $chat-history-height;
|
||||||
|
|
||||||
|
background-color: #1C323F;
|
||||||
|
border: 2px solid rgba(255, 255, 255, 0.5);
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
|
||||||
|
.nitro-card-header-container {
|
||||||
|
background-color: #3d5f6e;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.chat-history-content {
|
.chat-history-content {
|
||||||
.chat-history-container {
|
.chat-history-container {
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
|
@ -25,7 +25,7 @@ export const RelationshipsContainerView: FC<RelationshipsContainerViewProps> = p
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relationship-container d-flex flex-row align-items-center w-100">
|
<div className="relationship-container d-flex flex-row align-items-center w-100">
|
||||||
<i className={`icon icon-relationship-${relationshipName} flex-shrink-0 align-self-baseline mt-2`} />
|
<i className={`nitro-friends-spritesheet icon-${relationshipName} flex-shrink-0 align-self-baseline mt-2`} />
|
||||||
<div className="w-100 d-flex flex-column">
|
<div className="w-100 d-flex flex-column">
|
||||||
<span className={'relationship mx-2' + (!simple ? ' advanced' : '')}>
|
<span className={'relationship mx-2' + (!simple ? ' advanced' : '')}>
|
||||||
<span className="cursor-pointer relationship-text" onClick={ event => OnUserClick(relationshipInfo)}>
|
<span className="cursor-pointer relationship-text" onClick={ event => OnUserClick(relationshipInfo)}>
|
||||||
|
Loading…
Reference in New Issue
Block a user