Browse Source

📄: add © and license notices

license
Adrien 3 years ago
parent
commit
4eefcabf91
27 changed files with 512 additions and 1 deletions
  1. +19
    -0
      build/build.js
  2. +19
    -0
      build/check-versions.js
  3. +19
    -0
      build/dev-client.js
  4. +19
    -0
      build/dev-server.js
  5. +19
    -0
      build/load-minified.js
  6. +20
    -1
      build/service-worker-dev.js
  7. +19
    -0
      build/service-worker-prod.js
  8. +19
    -0
      build/utils.js
  9. +19
    -0
      build/vue-loader.conf.js
  10. +19
    -0
      build/webpack.base.conf.js
  11. +19
    -0
      build/webpack.dev.conf.js
  12. +19
    -0
      build/webpack.prod.conf.js
  13. +19
    -0
      config/dev.env.js
  14. +19
    -0
      config/index.js
  15. +19
    -0
      config/prod.env.js
  16. +19
    -0
      index.html
  17. +19
    -0
      src/App.vue
  18. +19
    -0
      src/components/Battleground.vue
  19. +19
    -0
      src/components/Hello.vue
  20. +19
    -0
      src/components/Objective.vue
  21. +19
    -0
      src/components/TheBattlegroundSelector.vue
  22. +19
    -0
      src/components/Timer.vue
  23. +19
    -0
      src/gameInfos/battlegrounds.js
  24. +19
    -0
      src/gameInfos/objectives.js
  25. +19
    -0
      src/main.js
  26. +19
    -0
      src/router/index.js
  27. +17
    -0
      src/styles/main.sass

+ 19
- 0
build/build.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

require('./check-versions')()


+ 19
- 0
build/check-versions.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const chalk = require('chalk')


+ 19
- 0
build/dev-client.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

/* eslint-disable */


+ 19
- 0
build/dev-server.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

require('./check-versions')()


+ 19
- 0
build/load-minified.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const fs = require('fs')


+ 20
- 1
build/service-worker-dev.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

// This service worker file is effectively a 'no-op' that will reset any
// previous service worker registered for the same host:port combination.
// In the production build, this file is replaced with an actual service worker
@@ -14,4 +33,4 @@ self.addEventListener('activate', () => {
windowClient.navigate(windowClient.url);
}
});
});
});

+ 19
- 0
build/service-worker-prod.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

(function() {
'use strict';



+ 19
- 0
build/utils.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const path = require('path')


+ 19
- 0
build/vue-loader.conf.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const utils = require('./utils')


+ 19
- 0
build/webpack.base.conf.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const path = require('path')


+ 19
- 0
build/webpack.dev.conf.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const fs = require('fs')


+ 19
- 0
build/webpack.prod.conf.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const fs = require('fs')


+ 19
- 0
config/dev.env.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

const merge = require('webpack-merge')


+ 19
- 0
config/index.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

'use strict'

// see http://vuejs-templates.github.io/webpack for documentation.


+ 19
- 0
config/prod.env.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

module.exports = {
NODE_ENV: '"production"'
}

+ 19
- 0
index.html View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<!DOCTYPE html>
<html lang="en">
<head>


+ 19
- 0
src/App.vue View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div id="app">
<header v-if="showHeader">


+ 19
- 0
src/components/Battleground.vue View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div class="battleground" v-if="battleground">
<div class="battleground-background" :style="backgroundCss"/>


+ 19
- 0
src/components/Hello.vue View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div class="hello">
<h1>{{ msg }}</h1>


+ 19
- 0
src/components/Objective.vue View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<template>

<div


+ 19
- 0
src/components/TheBattlegroundSelector.vue View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div class="map-selector">
<h1 class="map-selector__title">Battleground Selector</h1>


+ 19
- 0
src/components/Timer.vue View File

@@ -1,3 +1,22 @@
<!--
Copyright © 2021 Adrien Agez <adrien.agez@pm.me>

This file is part of Nexus Timers.

Nexus Timers is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Nexus Timers is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div class="timer">
<span v-if="displayHours">{{ hours }}:</span><span v-if="displayMinutes">{{ minutes }}</span><span>:{{ seconds }}</span>


+ 19
- 0
src/gameInfos/battlegrounds.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

/**
* This file contains informations about all the battlegrounds of the game
* It includes informations about all objectives and camps, and will define the layout of the battleground page


+ 19
- 0
src/gameInfos/objectives.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

/**
* This file contains informations about all objectives types in the game
* They are separated in 2 arrays of objectives objects, one for mercenary camps and the other for map objectives


+ 19
- 0
src/main.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'


+ 19
- 0
src/router/index.js View File

@@ -1,3 +1,22 @@
/*
* Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
*
* This file is part of Nexus Timers.
*
* Nexus Timers is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Nexus Timers is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
*/

import Vue from 'vue'
import Router from 'vue-router'



+ 17
- 0
src/styles/main.sass View File

@@ -1,3 +1,20 @@
// Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
//
// This file is part of Nexus Timers.
//
// Nexus Timers is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Nexus Timers is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.

/**
* Only add in this file pure sass code (like variables, functions and mixins) that don't get rendered
* Otherwise, this code will be duplicated in each component in the final css file


Loading…
Cancel
Save