1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Revert "Fine-tuning extensions page view (#1613)"

This reverts commit 6630419457.
This commit is contained in:
Torresangl925 2020-12-10 08:34:24 -05:00 committed by GitHub
parent d143b234b7
commit 8d963f98b6
2 changed files with 3 additions and 11 deletions

View File

@ -30,12 +30,6 @@
.actions > button:not(:last-child) { .actions > button:not(:last-child) {
margin-right: $spacing / 2; margin-right: $spacing / 2;
} }
.name {
color: var(--textColorSecondary);
padding-bottom: var(--padding);
font-weight: bold;
}
} }
> .spinner-wrapper { > .spinner-wrapper {
@ -46,8 +40,6 @@
.SearchInput { .SearchInput {
--spacing: 10px; --spacing: 10px;
max-width: none;
} }
} }

View File

@ -453,10 +453,10 @@ export class Extensions extends React.Component {
<div key={id} className="extension flex gaps align-center"> <div key={id} className="extension flex gaps align-center">
<div className="box grow"> <div className="box grow">
<div className="name"> <div className="name">
{name} Name: <code className="name">{name}</code>
</div> </div>
<div className="description"> <div className="description">
{description} Description: <span className="text-secondary">{description}</span>
</div> </div>
</div> </div>
<div className="actions"> <div className="actions">
@ -531,7 +531,7 @@ export class Extensions extends React.Component {
onClick={this.installFromUrlOrPath} onClick={this.installFromUrlOrPath}
/> />
<small className="hint"> <small className="hint">
<Trans><b>Pro-Tip</b>: you can also drag-n-drop tarball-file to this area</Trans> <Trans><b>Pro-Tip</b>: you can drag & drop extension&apos;s tarball-file to install</Trans>
</small> </small>
</div> </div>