Skip to content

Commit

Permalink
fixed UI commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptozoidberg committed May 3, 2021
1 parent fe3d4f4 commit 5c79cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qt-daemon/layout
Submodule layout updated 91 files
+5 −0 .idea/.gitignore
+6 −0 .idea/inspectionProfiles/Project_Default.xml
+8 −0 .idea/modules.xml
+6 −0 .idea/vcs.xml
+25 −0 .idea/watcherTasks.xml
+12 −0 .idea/zano_ui-main.iml
+1 −1 html/assets/scss/layout/_status.scss
+67 −67 html/main.js
+1 −1 html/main.js.map
+2 −2 html/polyfills.js
+1 −1 html/polyfills.js.map
+2 −2 html/styles.js
+1 −1 html/styles.js.map
+76 −28 html/vendor.js
+1 −1 html/vendor.js.map
+81 −0 html_source/src/app/_helpers/directives/confirm-modal/confirm-modal.component.css
+1 −0 html_source/src/app/_helpers/directives/confirm-modal/confirm-modal.component.css.map
+82 −0 html_source/src/app/_helpers/directives/modal-container/modal-container.component.css
+1 −0 html_source/src/app/_helpers/directives/modal-container/modal-container.component.css.map
+45 −0 html_source/src/app/_helpers/directives/progress-container/progress-container.component.css
+1 −0 html_source/src/app/_helpers/directives/progress-container/progress-container.component.css.map
+22 −0 html_source/src/app/_helpers/directives/staking-switch/staking-switch.component.css
+1 −0 html_source/src/app/_helpers/directives/staking-switch/staking-switch.component.css.map
+40 −0 html_source/src/app/_helpers/directives/transaction-details/transaction-details.component.css
+1 −0 html_source/src/app/_helpers/directives/transaction-details/transaction-details.component.css.map
+13 −0 html_source/src/app/add-contacts/add-contacts.component.css
+1 −0 html_source/src/app/add-contacts/add-contacts.component.css.map
+17 −0 html_source/src/app/app.component.css
+44 −0 html_source/src/app/assign-alias/assign-alias.component.css
+1 −0 html_source/src/app/assign-alias/assign-alias.component.css.map
+30 −0 html_source/src/app/contact-send/contact-send.component.css
+1 −0 html_source/src/app/contact-send/contact-send.component.css.map
+96 −0 html_source/src/app/contacts/contacts.component.css
+1 −0 html_source/src/app/contacts/contacts.component.css.map
+74 −0 html_source/src/app/contracts/contracts.component.css
+1 −0 html_source/src/app/contracts/contracts.component.css.map
+26 −0 html_source/src/app/create-wallet/create-wallet.component.css
+1 −0 html_source/src/app/create-wallet/create-wallet.component.css.map
+21 −0 html_source/src/app/edit-alias/edit-alias.component.css
+1 −0 html_source/src/app/edit-alias/edit-alias.component.css.map
+26 −0 html_source/src/app/export-import/export-import.component.css
+1 −0 html_source/src/app/export-import/export-import.component.css.map
+98 −0 html_source/src/app/history/history.component.css
+1 −0 html_source/src/app/history/history.component.css.map
+47 −0 html_source/src/app/login/login.component.css
+1 −0 html_source/src/app/login/login.component.css.map
+41 −0 html_source/src/app/main/main.component.css
+1 −0 html_source/src/app/main/main.component.css.map
+29 −0 html_source/src/app/messages/messages.component.css
+1 −0 html_source/src/app/messages/messages.component.css.map
+43 −0 html_source/src/app/open-wallet-modal/open-wallet-modal.component.css
+1 −0 html_source/src/app/open-wallet-modal/open-wallet-modal.component.css.map
+16 −0 html_source/src/app/open-wallet/open-wallet.component.css
+1 −0 html_source/src/app/open-wallet/open-wallet.component.css.map
+174 −0 html_source/src/app/purchase/purchase.component.css
+1 −0 html_source/src/app/purchase/purchase.component.css.map
+34 −0 html_source/src/app/receive/receive.component.css
+1 −0 html_source/src/app/receive/receive.component.css.map
+30 −0 html_source/src/app/restore-wallet/restore-wallet.component.css
+1 −0 html_source/src/app/restore-wallet/restore-wallet.component.css.map
+18 −0 html_source/src/app/seed-phrase/seed-phrase.component.css
+1 −0 html_source/src/app/seed-phrase/seed-phrase.component.css.map
+78 −0 html_source/src/app/send-modal/send-modal.component.css
+1 −0 html_source/src/app/send-modal/send-modal.component.css.map
+76 −0 html_source/src/app/send/send.component.css
+1 −0 html_source/src/app/send/send.component.css.map
+84 −0 html_source/src/app/settings/settings.component.css
+1 −0 html_source/src/app/settings/settings.component.css.map
+367 −0 html_source/src/app/sidebar/sidebar.component.css
+1 −0 html_source/src/app/sidebar/sidebar.component.css.map
+4 −7 html_source/src/app/sidebar/sidebar.component.scss
+86 −0 html_source/src/app/staking/staking.component.css
+1 −0 html_source/src/app/staking/staking.component.css.map
+21 −0 html_source/src/app/transfer-alias/transfer-alias.component.css
+1 −0 html_source/src/app/transfer-alias/transfer-alias.component.css.map
+57 −0 html_source/src/app/typing-message/typing-message.component.css
+1 −0 html_source/src/app/typing-message/typing-message.component.css.map
+22 −0 html_source/src/app/wallet-details/wallet-details.component.css
+1 −0 html_source/src/app/wallet-details/wallet-details.component.css.map
+261 −0 html_source/src/app/wallet/wallet.component.css
+1 −0 html_source/src/app/wallet/wallet.component.css.map
+1 −1 html_source/src/assets/scss/layout/_status.scss
+3,163 −0 html_source/src/styles.css
+1 −0 html_source/src/styles.css.map
+1 −0 test.cflags
+2 −0 test.config
+1 −0 test.creator
+229 −0 test.creator.user
+1 −0 test.cxxflags
+475 −0 test.files
+0 −0 test.includes

0 comments on commit 5c79cf9

Please sign in to comment.