Skip to content

Commit

Permalink
more css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 committed Jan 15, 2025
1 parent 2f87aab commit cf5044f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ const Container = styled.div`
background: none;
border: none;
color: red;
font-size: 24px;
}
`;

Expand Down Expand Up @@ -273,12 +272,12 @@ return (
props={{
ActionButton: () => (
<button
className="remove-btn p-2"
className="remove-btn"
data-testid="delete-btn"
disabled={isTxnCreated}
>
<img
style={{ height: 30 }}
style={{ height: 35 }}
src="https://ipfs.near.social/ipfs/bafkreieobqzwouuadj7eneei7aadwfel6ubhj7qishnqwrlv5ldgcwuyt4"
/>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,6 @@ const Container = styled.div`
table {
overflow-x: auto;
}
.show-more-btn {
border: 1px solid var(--border-color) !important;
text-align: center;
background: none;
}
`;

function formatAccount(text) {
Expand Down Expand Up @@ -397,13 +391,13 @@ return (
{showMoreLoading ? (
loader
) : (
<div className="w-100 h-100 m-2">
<div className="w-100 h-100 mb-3">
{!hideViewMore && (
<button
onClick={() => {
setPage(page + 1);
}}
className="show-more-btn py-3 w-100 fw-semi-bold rounded-3"
className="btn btn-outline-secondary w-100"
>
Show More
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ const ProposalsComponent = () => {
src={`${REPL_DEVHUB}/widget/devhub.components.molecule.Button`}
props={{
classNames: {
root: "btn btn-outline-secondary",
root: "btn btn-outline-secondary shadow-none",
},
label: "Details",
onClick: () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ const ProposalsComponent = () => {
src={`${REPL_DEVHUB}/widget/devhub.components.molecule.Button`}
props={{
classNames: {
root: "btn btn-outline-secondary",
root: "btn btn-outline-secondary shadow-none",
},
label: "Details",
onClick: () => {
Expand Down

0 comments on commit cf5044f

Please sign in to comment.