shrink cmd-exec space

This commit is contained in:
sawka 2023-10-12 21:33:50 -07:00
parent e21d35288f
commit 852b227574
2 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@
.cmd-input-field {
position: relative;
padding-right: 22em;
padding-right: 17em;
.cmd-hints {
position: absolute;
@ -146,7 +146,7 @@
}
.cmd-btn {
display: inline-block;
margin-right: 1em;
margin-right: 0;
padding: 0.2em 0.7rem;
opacity: 0.5;
cursor: pointer;

View File

@ -164,7 +164,7 @@ class CmdInput extends React.Component<{}, {}> {
)}
{focusVal && (
<div onMouseDown={this.clickHistoryHint} className="cmd-btn hoverEffect">
{historyShow ? "close history (esc)" : "show history (ctrl-r)"}
{historyShow ? "close (esc)" : "history (crtl-r)"}
</div>
)}
<ExecIcon