Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkvon committed Jan 2, 2020
1 parent f314148 commit 9fcdd0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
3 changes: 0 additions & 3 deletions modules/tribes/client/components/Tribe.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ const Container = styled.div`
position: relative;
`;

/**
* @TODO maybe rename to Tribe
*/
export default function Tribe({ tribe, user, onMembershipUpdated }) {
const { t } = useTranslation('tribes');

Expand Down
8 changes: 3 additions & 5 deletions modules/tribes/client/components/TribesList.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@ import SuggestTribe from './SuggestTribe';

const List = styled.ul`
margin: -5px -5px 15px -5px;
line-height: 0;
`;

const Item = styled.li`
line-height: 1.42857143; // set back the line-height set by bootstrap
padding: 5px;
display: inline-block;
vertical-align: bottom;
// background-color: red;
@media (max-width: 615.9999px) {

@media (min-width: 0) {
width: 100%;
}

@media (min-width: 616px) and (max-width: 991.9999px) {
@media (min-width: 616px) {
width: 50%;
}

Expand Down

0 comments on commit 9fcdd0a

Please sign in to comment.