Skip to content

Commit

Permalink
Merge pull request #239 from Trendyol/feature/RadiusUpdate
Browse files Browse the repository at this point in the history
button and popup radius update
  • Loading branch information
cihadhoruzoglu authored Nov 23, 2021
2 parents 33c8e56 + 6e8e256 commit 6609db2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quarkify",
"version": "3.1.0",
"version": "3.1.1",
"license": "MIT",
"description": "An awesome lightweight React UI Component library",
"repository": "https://github.com/Trendyol/quarkify",
Expand Down
1 change: 1 addition & 0 deletions src/components/popup/popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ export default class Popup extends PureComponent<IPopupProps, IPopupState> {
className={popupIconClasses}
onClick={handleIconClick}
name="close"
sizePixel={10}
/>
)}
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ $-padding: 1rem !default;

//Border Radius
$border-radius: 3px;
$border-radius-button: 5px;
$border-radius-popup: 6px;

//Popup Padding
$popup-margin: 30px !default;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
line-height: normal;
letter-spacing: normal;
text-align: center;
border-radius: $border-radius;
border-radius: $border-radius-button;

&.q-button-large {
height: $button-height-large;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/components/_popup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
width: 100%;
max-width: 90vw;
max-height: 90vh;
border-radius: $border-radius;
border-radius: $border-radius-popup;
z-index: 1031;
box-sizing: border-box;

Expand Down

0 comments on commit 6609db2

Please sign in to comment.