Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
_sections.less 912 B
/*!
 * Copyright (c) 2023, 2024 Eclipse Foundation, Inc.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * Contributors:
 *   Christopher Guindon <chris.guindon@eclipse-foundation.org>
 *   Olivier Goulet <olivier.goulet@eclipse-foundation.org>
 *
 * SPDX-License-Identifier: EPL-2.0
*/

.tile-section {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  text-align: center;

  &-content {
    color: @black;
    font-weight: 500;
  }

  &-end {
    flex-grow: 1;
    align-items: flex-end;
  }

  & .btn {
    display: block;
    width: 100%;
  }
}

@media (min-width: @screen-sm-min) {
  .tile-section .btn {
    display: inline-block;
    width: unset;
  }
}

@media (min-width: @screen-md-min) {
  .tile-section {
    text-align: left;
  }
}