Skip to content

Commit

Permalink
Optimize icons
Browse files Browse the repository at this point in the history
  • Loading branch information
kreafox committed Sep 24, 2020
1 parent adbd733 commit 911be87
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 16 deletions.
20 changes: 15 additions & 5 deletions src/ColumnsBlock/ColumnControls.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
import React from 'react';

export default (props) => {
// selector for column sizes
return <div>25 33 50 66 75</div>;
return (
<div>
<div>25 33 50 66 75</div>
</div>
);


// 25% 25% 50% 75%-> grid de 4 coloane
// 33% 66% -> grid de 3 coloane
//
//
// 4 coloane:

// Pentru desktop:
// 4 coloane:
// 25 25 25 25
//
// 3 coloane
Expand All @@ -23,5 +29,9 @@ export default (props) => {
// 33 66
// 66 33
//
// 100% ---> pt mobile
// Pentru tableta:
// 2 coloane si 100%
//
// Pentru mobile:
// 100%
};
6 changes: 3 additions & 3 deletions src/ColumnsBlock/DeviceSelect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import tabletIcon from './icons/device-tablet.svg';
export default (props) => {
return (
<div>
<Icon name={computerIcon} size="18px" />
<Icon name={tabletIcon} size="18px" />
<Icon name={mobileIcon} size="18px" />
<Icon name={computerIcon} size="24px" />
<Icon name={tabletIcon} size="24px" />
<Icon name={mobileIcon} size="24px" />
</div>
);
};
4 changes: 2 additions & 2 deletions src/ColumnsBlock/icons/desktop-computer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/ColumnsBlock/icons/device-mobile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/ColumnsBlock/icons/device-tablet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/ColumnsBlock/icons/view-boards.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 911be87

Please sign in to comment.