# HG changeset patch # User Riwad Salim # Date 1534369142 -7200 # Node ID 5d2bc8c877ea97cf2cf09d76a758f7f492ee0a07 # Parent 8b950885ddaed367f3d21ab62491a6ac70a3030d Adding class for specific css in App, Navbar and SessionList components diff -r 8b950885ddae -r 5d2bc8c877ea client/src/App.js --- a/client/src/App.js Tue Aug 14 20:39:55 2018 +0200 +++ b/client/src/App.js Wed Aug 15 23:39:02 2018 +0200 @@ -11,7 +11,7 @@
- +
diff -r 8b950885ddae -r 5d2bc8c877ea client/src/components/Navbar.js --- a/client/src/components/Navbar.js Tue Aug 14 20:39:55 2018 +0200 +++ b/client/src/components/Navbar.js Wed Aug 15 23:39:02 2018 +0200 @@ -1,3 +1,4 @@ +import '../index.css'; import './Navbar.css'; import PropTypes from 'prop-types'; import React, { Component } from 'react'; @@ -28,17 +29,17 @@ return (
  • - Paramètres + Paramètres
  • - Se déconnecter + Se déconnecter
  • ); } return (
  • - Se connecter + Se connecter
  • ); } @@ -47,7 +48,7 @@ return (
  • - signal_wifi_4_bar + signal_wifi_4_bar
  • ) @@ -89,7 +90,7 @@ if(currentGroup) { const currentGroupName = currentGroup.get('name'); return ( - + { groups && groups.map((group, key) => { const groupName = group.get('name'); const className = (groupName === currentGroupName)?'active':null; @@ -171,7 +172,7 @@