Skip to content
This repository has been archived by the owner on Mar 23, 2022. It is now read-only.

Commit

Permalink
Merge pull request #70 from RaenonX-DL/dev
Browse files Browse the repository at this point in the history
v1.7.4 Release
  • Loading branch information
RaenonX authored Jan 26, 2021
2 parents 207b5f4 + 2c35f34 commit a1c302a
Show file tree
Hide file tree
Showing 9 changed files with 244 additions and 326 deletions.
450 changes: 225 additions & 225 deletions src/bootstrap.css

Large diffs are not rendered by default.

89 changes: 1 addition & 88 deletions src/bootstrap.css.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/components/elements/gameData/common/element.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* Override the entry button behavior */

div.btn-group-toggle > label.btn-outline-secondary:hover {
background-color: #000;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import {DepotPaths, EnumEntry} from '../../../../utils/services/resources';

import {OverlayPopover, OverlayTooltip} from '../../express';

// Style sheet override
import './element.css';


type TitledProps = {
titleLabel: string,
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/elements/gameData/ex/inputSection.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, {ChangeEventHandler} from 'react';
import {ElementEnums, ExBuffParams} from '../../../../utils/services/resources/types';

import {EnumResourceChecks, SectionTitle} from '../base/inputBase';
import {EnumResourceChecks, SectionTitle} from '../common/element';

export type InputData = {
filterElementCode: Array<number>,
Expand Down
2 changes: 1 addition & 1 deletion src/components/elements/gameData/ex/outputMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const ExAbilityOutput = ({exAbilityData, conditionEnums, inputData}: Outp
.push(
...exAbilityData
.map((exAbilityData: ExAbilityDataEntry, index: number) => (
<Col key={index} xs={6}>
<Col key={index} lg={6}>
<ExAbilityEntry entry={exAbilityData} conditionEnums={conditionEnums}/>
</Col>
)),
Expand Down
2 changes: 1 addition & 1 deletion src/components/elements/gameData/skillAtk/inputSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
RadioChecks,
SectionSubTitle,
SectionTitle,
} from '../base/inputBase';
} from '../common/element';

export type InputData = {
atkInGame: number,
Expand Down
4 changes: 0 additions & 4 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ div.footer {
height: 15vh;
}

div.btn-group-toggle > label.btn.active {
background-color: #c6c6c6;
}

/* endregion */

/* region Youtube Embed */
Expand Down
12 changes: 6 additions & 6 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import React from 'react';
import ReactDOM from 'react-dom';
import {BrowserRouter} from 'react-router-dom';

import './index.css';
import Main from './main';
import * as serviceWorker from './serviceWorker';

// Style sheets
import './bootstrap.css';

// import i18n (needs to be bundled)
import './i18n';

// Style sheets
import './index.css';

import Main from './main';
import * as serviceWorker from './serviceWorker';

ReactDOM.render(
<BrowserRouter>
<Main/>
Expand Down

0 comments on commit a1c302a

Please sign in to comment.