changeset 118:b68cdc620908

Removed unnecessary files.
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 26 Jun 2018 17:29:32 +0200
parents 5e95c62a7e74
children be2631b0ce7e
files client/src/assets/login.scss client/src/views/Map.jsx
diffstat 2 files changed, 0 insertions(+), 101 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/assets/login.scss	Tue Jun 26 17:26:34 2018 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,66 +0,0 @@
-@import "../assets/application.scss";
-$logincollapsed: 470px;
-$loginextended: 550px;
-
-.emailgroup {
-  box-shadow: $basic-shadow-light !important;
-}
-.forgottenlink {
-  text-align: right;
-  margin-top: $small-offset;
-  margin-bottom: $small-offset;
-}
-#inputPassword {
-  border-right: none;
-}
-.input-group-text {
-  background-color: white !important;
-}
-
-.login {
-  width: 375px;
-  @extend %fully-centered;
-  padding-top: $offset;
-  padding-bottom: $offset;
-  box-shadow: $basic-shadow;
-}
-.logincollapsed {
-  height: $logincollapsed;
-}
-
-.loginextended {
-  height: $loginextended;
-}
-.loginerror {
-  white-space: pre;
-}
-.loginerrormessage {
-  box-shadow: $basic-shadow-light !important;
-}
-.loginform {
-  width: 300px;
-}
-.logogroup {
-  margin-top: $offset;
-  margin-bottom: $offset;
-}
-.mail-icon {
-  width: $iconwidth;
-}
-.passwordgroup {
-  box-shadow: $basic-shadow-light !important;
-}
-.password-icon {
-  position: relative;
-  top: 10px;
-  font-size: $iconsize;
-  line-height: $iconLineHeight;
-  width: $iconwidth;
-}
-.submitbutton {
-  box-shadow: $basic-shadow-light !important;
-  line-height: 20px !important;
-}
-.title {
-  margin-left: $offset;
-}
--- a/client/src/views/Map.jsx	Tue Jun 26 17:26:34 2018 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-/*eslint no-unused-vars: ["error", { "args": "none" }]*/
-import ol_Map from "ol/map";
-import ol_layer_Tile from "ol/layer/tile";
-import ol_source_OSM from "ol/source/osm";
-import ol_View from "ol/view";
-
-export default {
-  render(h) {
-    return <div id="map" />;
-  },
-  data() {
-    return {
-      lat: 52.278889,
-      long: 8.043056,
-      zoom: 12,
-      projection: "EPSG:4326"
-    };
-  },
-  mounted() {
-    console.log(this.centerX);
-    new ol_Map({
-      layers: [
-        new ol_layer_Tile({
-          source: new ol_source_OSM()
-        })
-      ],
-      target: "map",
-      view: new ol_View({
-        center: [this.long, this.lat],
-        zoom: this.zoom,
-        projection: this.projection
-      })
-    });
-  }
-};