@import "vars";

.toast-example {
  position: static;
  margin: 10px 0 30px;
  &.padding-0 {
    margin-bottom: 30px;
  }
  > div {
    width: auto;
    max-width: 300px;
    margin-bottom: 0;
  }
}

.position-example {
  position: relative;
  height: 330px;
  margin-bottom: 20px;
  > div {
    position: absolute;
    width: 100%;
    padding: 20px;
  }
  > .btn-block + .btn-block {
    margin-top: 215px;
  }
}