diff --git a/src/views/BoardsView/BoardsView.hbs b/src/views/BoardsView/BoardsView.hbs index b99f105..520bd0e 100644 --- a/src/views/BoardsView/BoardsView.hbs +++ b/src/views/BoardsView/BoardsView.hbs @@ -14,10 +14,10 @@ {{/if}} -
+
{{#if (IsEqualHelper this.team_type 0)}} - {{this.users.length}} +
{{this.users.length}}
@@ -30,7 +30,7 @@
-
+
{{#if this.boards}}
{{#each this.boards}} @@ -41,12 +41,14 @@ {{/each}}
{{else}} -
Похоже досок пока нет.
Создайте - {{#if (IsEqualHelper this.team_type 2)}} - Ваш первый проект в личном пространстве. - {{else}} - первый проект команды "{{this.team_name}}" - {{/if}} +
+
Похоже досок пока нет.
Создайте + {{#if (IsEqualHelper this.team_type 2)}} + Ваш первый проект в личном пространстве. + {{else}} + первый проект команды "{{this.team_name}}" + {{/if}} +
{{/if}}
diff --git a/src/views/BoardsView/BoardsView.scss b/src/views/BoardsView/BoardsView.scss index 8301360..01ba24f 100644 --- a/src/views/BoardsView/BoardsView.scss +++ b/src/views/BoardsView/BoardsView.scss @@ -89,6 +89,13 @@ $team-font-size: 25px; &__team-name { font-size: $team-font-size; } + + &__centred { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + } } .material-icons-colored { @@ -122,11 +129,18 @@ $team-font-size: 25px; .team__member-counter { font-size: $small-font-size; + vertical-align: super; } .boards-header { display: flex; flex-direction: row; align-items: start; +} +.team-btns-aling { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; }