Unverified Commit 0c6247dc authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #626 from ethereum/styleDAR

style fix in tx item
parents 52c0910f 58bb328f
...@@ -13,6 +13,7 @@ const css = csjs` ...@@ -13,6 +13,7 @@ const css = csjs`
} }
.plugItIn > div { .plugItIn > div {
overflow-y : auto; overflow-y : auto;
overflow-x : hidden;
height : 100%; height : 100%;
width : 100%; width : 100%;
} }
......
...@@ -53,6 +53,7 @@ var css = csjs` ...@@ -53,6 +53,7 @@ var css = csjs`
.select { .select {
font-weight: normal; font-weight: normal;
width: 100%; width: 100%;
overflow: hidden;
} }
.instanceContainer { .instanceContainer {
display: flex; display: flex;
......
...@@ -78,7 +78,7 @@ UniversalDAppUI.prototype.renderInstanceFromABI = function (contractABI, address ...@@ -78,7 +78,7 @@ UniversalDAppUI.prototype.renderInstanceFromABI = function (contractABI, address
var close = yo` var close = yo`
<button <button
class="${css.udappClose} mr-2 p-1 btn btn-secondary" class="${css.udappClose} mr-1 p-1 btn btn-secondary align-items-center"
data-id="universalDappUiUdappClose" data-id="universalDappUiUdappClose"
onclick=${remove} onclick=${remove}
title="Remove from the list" title="Remove from the list"
......
...@@ -34,6 +34,7 @@ var css = csjs` ...@@ -34,6 +34,7 @@ var css = csjs`
word-break: break-word; word-break: break-word;
width: 100%; width: 100%;
border: none; border: none;
overflow: hidden;
} }
.spanTitleText { .spanTitleText {
line-height: 12px; line-height: 12px;
...@@ -43,6 +44,7 @@ var css = csjs` ...@@ -43,6 +44,7 @@ var css = csjs`
border: none; border: none;
background: none; background: none;
text-transform: uppercase; text-transform: uppercase;
overflow: hidden;
} }
.inputGroupText { .inputGroupText {
width: 100%; width: 100%;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment