Skip to content

Commit

Permalink
Updated Dependencies and changed border color of Card component to be…
Browse files Browse the repository at this point in the history
… blue
  • Loading branch information
tihomir-petrovv committed Apr 25, 2024
1 parent 631af78 commit 2a88238
Show file tree
Hide file tree
Showing 20 changed files with 3,729 additions and 7,072 deletions.
Binary file modified .next/cache/webpack/client-development/0.pack
Binary file not shown.
Binary file modified .next/cache/webpack/client-development/1.pack
Binary file not shown.
Binary file modified .next/cache/webpack/client-development/index.pack
Binary file not shown.
Binary file modified .next/cache/webpack/client-development/index.pack.old
Binary file not shown.
3 changes: 1 addition & 2 deletions .next/server/pages-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"/_app": "pages/_app.js",
"/_error": "pages/_error.js",
"/_document": "pages/_document.js",
"/": "pages/index.js"
"/_document": "pages/_document.js"
}
4 changes: 2 additions & 2 deletions .next/static/chunks/pages/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .next/static/chunks/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
/******/
/******/ /* webpack/runtime/getFullHash */
/******/ !function() {
/******/ __webpack_require__.h = function() { return "4b6c1b4aa503b35b"; }
/******/ __webpack_require__.h = function() { return "da308ca943564850"; }
/******/ }();
/******/
/******/ /* webpack/runtime/global */
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"c":["pages/index","webpack"],"r":[],"m":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"c":["pages/index","webpack"],"r":[],"m":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"c":["pages/index","webpack"],"r":[],"m":[]}
22 changes: 22 additions & 0 deletions .next/static/webpack/pages/index.021f71ffe03ac019.hot-update.js

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions .next/static/webpack/pages/index.4b6c1b4aa503b35b.hot-update.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions .next/static/webpack/pages/index.fe99318aba18b9c1.hot-update.js

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions .next/static/webpack/webpack.021f71ffe03ac019.hot-update.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"use strict";
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
self["webpackHotUpdate_N_E"]("webpack",{},
/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ !function() {
/******/ __webpack_require__.h = function() { return "fe99318aba18b9c1"; }
/******/ }();
/******/
/******/ }
);
18 changes: 18 additions & 0 deletions .next/static/webpack/webpack.4b6c1b4aa503b35b.hot-update.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"use strict";
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
self["webpackHotUpdate_N_E"]("webpack",{},
/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ !function() {
/******/ __webpack_require__.h = function() { return "021f71ffe03ac019"; }
/******/ }();
/******/
/******/ }
);
18 changes: 18 additions & 0 deletions .next/static/webpack/webpack.fe99318aba18b9c1.hot-update.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"use strict";
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
self["webpackHotUpdate_N_E"]("webpack",{},
/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ !function() {
/******/ __webpack_require__.h = function() { return "da308ca943564850"; }
/******/ }();
/******/
/******/ }
);
19 changes: 19 additions & 0 deletions .next/trace

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions collections/Card/elements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const StyledCardContainerColumn = styled(
border-radius: 15px;
cursor: pointer;
border: ${(props) =>
props.selectedBoxIndex === props.index && "2px solid red"};
props.selectedBoxIndex === props.index && "2px solid #0388fc"};
`;
export const StyledCardTitle = styled(({selectedBoxIndex, index, ...props}) => (
<SectionMediumHeading {...props} />
Expand All @@ -63,7 +63,7 @@ export const StyledCardTitle = styled(({selectedBoxIndex, index, ...props}) => (
: {}};
`;

export const StyledCardDescription = styled((props) => (
export const StyledCardDescription = styled(({ ...props }) => (
<SectionSubheading {...props} />
))`
margin: 0.1rem 0 0;
Expand Down

0 comments on commit 2a88238

Please sign in to comment.