mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 01:52:42 +03:00
various talking and improvements
This commit is contained in:
parent
e4cfbaba47
commit
10f447ef13
@ -139,9 +139,12 @@ body {
|
|||||||
width: 8rem;
|
width: 8rem;
|
||||||
margin-bottom: 0.3rem;
|
margin-bottom: 0.3rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-transform: capitalize;
|
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
}
|
}
|
||||||
|
#stations .station {
|
||||||
|
display: block;
|
||||||
|
width: 24rem;
|
||||||
|
}
|
||||||
.station .name {
|
.station .name {
|
||||||
border-bottom: 6px solid transparent;
|
border-bottom: 6px solid transparent;
|
||||||
}
|
}
|
||||||
@ -274,7 +277,7 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
text-transform: capitalize;
|
text-transform: lowercase;
|
||||||
}
|
}
|
||||||
input.join {
|
input.join {
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
@ -298,6 +301,7 @@ input.join:focus::-webkit-input-placeholder {
|
|||||||
}
|
}
|
||||||
a.up {
|
a.up {
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
|
margin-top: 0.6rem;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,10 @@ module.exports = {
|
|||||||
statement: {
|
statement: {
|
||||||
bouquet: [],
|
bouquet: [],
|
||||||
speech: {
|
speech: {
|
||||||
say: message
|
lin: {
|
||||||
|
say: false,
|
||||||
|
txt: message
|
||||||
|
}
|
||||||
},
|
},
|
||||||
date: Date.now()
|
date: Date.now()
|
||||||
}
|
}
|
||||||
@ -224,7 +227,7 @@ Message = recl({
|
|||||||
}, this.convTime(this.props.thought.statement.date))
|
}, this.convTime(this.props.thought.statement.date))
|
||||||
]), div({
|
]), div({
|
||||||
className: "mess"
|
className: "mess"
|
||||||
}, this.props.thought.statement.speech.say)
|
}, this.props.thought.statement.speech.lin.txt)
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user